Capítulo 93 de 147
Learn how to adjust the size of icons in your React Native application using the size prop or by using CSS.
size propimport React, {useState, useEffect} from 'react';
import { View } from 'react-native';
import { Landmark } from "lucide-react-native";
const style = { height: '100%', alignItems: 'center', display: 'flex', justifyContent: 'center' }
const App = () => {
return (
<View style={style}>
<Landmark size={48} />
</View>
);
};
export default App;
size prop