Skip to content

Text

Utility prop base component to copy/paste.

Example usage:

<Text marginTop={12}>Hello!</Text>

Text.tsx
import { Text as RNText } from 'react-native';
import { createComponent } from 'react-native-small-ui';
const Text = createComponent(RNText, {
_light: {
color: '#111',
},
_dark: {
color: '#eee',
},
});