# `@svgr-iconkit/themify-icons`

Icons re-exported from [Themify Icons](https://themify.me/themify-icons).

Full details please check on website https://svgr-iconkit.dev/explorer/themify.

## Usage

### React Web

```javascript
import Icon from '@svgr-iconkit/themify-icons';

export default function App() {
  return <div><Icon name="hand-open" /></div>
}

```

### React Native

```javascript
import { View } from "react-native";
import Icon from '@svgr-iconkit/themify-icons';

export default function App() {
  return <View><Icon name="hand-open" /></View>
}

```
