Capítulo 94 de 147
Learn how to adjust the stroke width of icons in your React Native application using the strokeWidth prop or adjust the strokeWidth appearance using the absoluteStrokeWidth prop.
strokeWidth propimport React, {useState, useEffect} from 'react';
import { View } from 'react-native';
import { FolderLock } from "lucide-react-native";
const style = { height: '100%', alignItems: 'center', display: 'flex', justifyContent: 'center', backgroundColor: '#202127', color: '#fff' }
const App = () => {
return (
<View style={style}>
<FolderLock strokeWidth={1} />
</View>
);
};
export default App;
strokeWidth prop