npm.io
5.1.5 • Published 6 years ago

@styled-system/props

Licence
MIT
Version
5.1.5
Deps
1
Size
4 kB
Vulns
0
Weekly
0

@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