Created
September 10, 2023 13:21
-
-
Save andrew-levy/c03b679b60ffca60cdcb531c3d683ba4 to your computer and use it in GitHub Desktop.
Custom Props
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { styled } from 'style-direct-club'; | |
import { Text } from 'react-native'; | |
const StyledText = styled(Text, { | |
customProps: { | |
sm: { | |
fontSize: 12, | |
marginBottom: 5, | |
}, | |
xl: { | |
fontSize: 36, | |
marginBottom: 10, | |
fontWeight: 'bold', | |
}, | |
}, | |
}); | |
function App() { | |
return <StyledText xl>Hello World!</StyledText>; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment