Skip to content

Instantly share code, notes, and snippets.

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