## @chakra-icons/feather

## How To

### Installation

```console
yarn add @chakra-icons/feather
```

**OR use NPM**

```console
npm install --save-dev @chakra-icons/feather
```

### Usage

```jsx
import { IconName } from "@chakra-icons/feather";
const App = () => (
  <div>
    <IconName boxSize="md" color="blue" />
  </div>
);
```

You just need to change `IconName` with the specific icon name that we are provided, See [List Available Icons](https://github.com/kodingdotninja/chakra-icons/tree/main/packages/@chakra-icons/feather/snapshot.json).
