mirror of
https://github.com/iconoir-icons/iconoir
synced 2026-03-14 22:15:43 +01:00
21 lines
411 B
JavaScript
21 lines
411 B
JavaScript
import { Check, Iconoir, IconoirProvider } from 'iconoir-react-native';
|
|
import { View } from 'react-native';
|
|
|
|
export default function App() {
|
|
return (
|
|
<View>
|
|
<Iconoir />
|
|
|
|
<IconoirProvider
|
|
iconProps={{
|
|
color: '#1E441E',
|
|
strokeWidth: 1,
|
|
width: '2em',
|
|
height: '2em',
|
|
}}
|
|
>
|
|
<Check />
|
|
</IconoirProvider>
|
|
</View>
|
|
);
|
|
}
|