Capítulo 96 de 147
Learn how to style all Lucide icons globally in your React Native application using CSS or the Lucide context provider.
import { LucideProvider, Home } from 'lucide-react-native';
const App = () => (
<LucideProvider
color="red"
size={48}
strokeWidth={2}
>
<Home />
</LucideProvider>
);