React Native - Text- Component

 I'm a huge fan of styled components and I use them extensively with React. I find the code much clearer without inline styles, and I can build some kind of UI Kit easily with it.

 import { Text, SafeAreaView, StyleSheet,View } from 'react-native';

export default function App() {
  return (
    <SafeAreaView>
     <View>
       <Text style={styles.txt}>
         This is Heading
       </Text>
     </View>
    </SafeAreaView>
  );
}

const styles = StyleSheet.create({
  txt:{
    padding:25,
    color:'red',
    fontSize:45,
  }
});