@jamadd/react-native-template-icons
Version:
React Native Template Icons is a collection of icons designed by JaMa D&D.
46 lines (28 loc) • 846 B
Markdown
React Native Template Icons is a collection of icons designed by JaMa D&D.
- Comprehensive icon set
- Supports default sizes and custom sizes
- Customizable colors
```sh
yarn add @jamadd/react-native-template-icons
```
or
```sh
npm install @jamadd/react-native-template-icons
```
```js
import Icon, { IconSize } from "@jamadd/react-native-template-icons";
// Default icon size
<Icon name="house" color="#ff0000" size={IconSize.S} />;
// Custom icon size
<Icon name="house" color="#ff0000" size={24} />;
```
TODO
This package is created using [react-native-vector-icons](https://github.com/oblador/react-native-vector-icons/blob/master/docs/CREATE_FONT_PACKAGE.md) and [Yeoman generator](https://yeoman.io/learning/).
MIT