Skip to content

Instantly share code, notes, and snippets.

@hayanisaid
Created March 20, 2021 01:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hayanisaid/1bec5cb7b001e45a8b4e3b5ddf8a4f6c to your computer and use it in GitHub Desktop.
Save hayanisaid/1bec5cb7b001e45a8b4e3b5ddf8a4f6c to your computer and use it in GitHub Desktop.
import {View,Text} from 'react-native'
import { withTheme } from 'react-native-paper';
const CardTitle = ({theme})=>{
return (
<View>
<Text style={{
fontSize:theme.fonts.regular,
}}>
Headline 3
</Text>
</View>
)
}
export default withTheme(CardTitle)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment