native-base
Version:
Essential cross-platform UI components for React Native
18 lines (16 loc) • 321 B
text/typescript
const baseStyle = () => {
return {
color: 'text.900',
_dark: {
color: 'text.50',
},
fontWeight: '400',
fontFamily: 'body',
fontStyle: 'normal',
fontSize: 'sm',
letterSpacing: 'md',
lineHeight: 'lg',
};
};
const defaultProps = {};
export default { baseStyle, defaultProps };