Created
September 10, 2023 13:18
-
-
Save andrew-levy/cf78408a5db153dc76e4932106941556 to your computer and use it in GitHub Desktop.
Aliases
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 { View } from 'react-native'; | |
const StyledView = styled(View, { | |
aliases: { | |
bg: 'backgroundColor', | |
p: 'padding', | |
m: 'margin', | |
mt: 'marginTop', | |
}, | |
}); | |
function App() { | |
return ( | |
<StyledView bg="blue" p={10} m={10} mt={20}> | |
<Text color="white">Hello World!</Text> | |
</StyledView> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment