5.1.5 • Published 4 years ago

@styled-system/props v5.1.5

Weekly downloads
7,943
License
MIT
Repository
-
Last release
4 years ago

@styled-system/props

Utilities for using Styled System props

npm i @styled-system/props
import { pick, omit } from '@styled-system/props'

const attr = omit({
  id: 'keep-this',
  color: 'primary',
})
// { id: 'keep-this' }

const props = pick({
  className: 'hello',
  color: 'secondary',
})
// { color: 'secondary' }

MIT License