React Native components for heroicons
npm install react-native-heroicons

Heroicons are designed by Steve Schoger and published by Tailwind Labs.
A full directory of all available icons can be found here:
https://heroicons.com/
react-native-heroicons requires react-native-svg v9 or higher
``sh`
yarn add react-native-heroicons react-native-svg
`sh`
npm i react-native-heroicons react-native-svg
Specific icons:
`tsx
import React from "react";
import { View } from "react-native";
import { SparklesIcon as SparklesIconMicro } from "react-native-heroicons/micro";
// Old solid style from heroicons v1
import { SparklesIcon as SparklesIconMini } from "react-native-heroicons/mini";
import { SparklesIcon } from "react-native-heroicons/solid";
import { SparklesIcon as SparklesIconOutline } from "react-native-heroicons/outline";
const App = () => {
return (
);
};
export default App;
`
Entire icon pack:
`tsx
import React from "react";
import * as Icons from "react-native-heroicons/solid";
const App = () => {
return
};
export default App;
`
Icons can be adjusted with the size prop.16
Defaults are for micro, 20 for mini and 24 for solid/outline: 24):
`tsx``
import { SparklesIcon as SparklesIconOutline } from "react-native-heroicons/outline";
// ...