# @planview/pv-icons

Collection of **Planview Design System** `Icons` following the [specification](https://design.planview.com/foundation/utilities/icon-collection)

Open the [official documentation](https://planview-ds.github.io/react-pvds/?path=/docs/pv-icons-getting-started--docs) for more details

## Setup

You can install `@planview/pv-icons` in multiple ways:

-   With NPM

```sh
npm install styled-components --save # peerDependency
npm install @planview/pv-icons --save
```

-   With Yarn

```sh
yarn add styled-components # peerDependency
yarn add @planview/pv-icons
```

## Usage

Named import (use with tree shaking)

```jsx
import { Activity } from '@planview/pv-icons'
;<Activity size="small" color="blue" />
```
