# @styled-system/props

> Utilities for using Styled System props

Latest version **5.1.5** (published 2020-02-17) · MIT license · 0 weekly downloads

## Install

```sh
npm install @styled-system/props
pnpm add @styled-system/props
yarn add @styled-system/props
bun add @styled-system/props
```

## Health

**Score 23/100 (F)** — status: abandoned.

Positive: has types package; esm support; no vulnerabilities.

Warnings: low downloads.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 5.1.5 |
| Published | 2020-02-17 |
| First published | 2019-09-16 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | separate (@types/styled-system__props) |
| Module format | ESM + CommonJS |
| Dependencies | 1 |
| Unpacked size | 4.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Brent Jackson |
| Maintainers | jxnblk |

## Links

- npm: https://www.npmjs.com/package/@styled-system/props
- npm.io page: https://npm.io/package/@styled-system/props

## Dependencies (1)

- [styled-system](https://npm.io/package/styled-system.md) ^5.1.5

## Recent versions

- 5.1.5 (latest) — 2020-02-17
- 5.1.4 — 2019-12-02
- 5.1.3 — 2019-09-16

## README

# @styled-system/props

Utilities for using Styled System props

```sh
npm i @styled-system/props
```

```js
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

---
_Source: https://npm.io/package/@styled-system/props · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
