iconoir/examples/react-native/App.js
2023-10-29 01:41:05 +02:00

26 lines
430 B
JavaScript

import {
Check,
Iconoir,
IconoirProvider,
Medal1st,
} 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>
);
}