Skip to content

Instantly share code, notes, and snippets.

@andrew-levy
Created September 10, 2023 13:21
Show Gist options
  • Save andrew-levy/c03b679b60ffca60cdcb531c3d683ba4 to your computer and use it in GitHub Desktop.
Save andrew-levy/c03b679b60ffca60cdcb531c3d683ba4 to your computer and use it in GitHub Desktop.
Custom Props
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