import { StyleSheet } from 'react-native'; export default StyleSheet.create({ 'base': { letterSpacing: -0.4 }, 'medium-title-400': { fontSize: 24, fontWeight: '400' }, 'medium-title-500': { fontSize: 24, fontWeight: '500' }, 'medium-title-600': { fontSize: 24, fontWeight: '600' }, 'small-title-400': { fontSize: 22, fontWeight: '400' }, 'small-title-500': { fontSize: 22, fontWeight: '500' }, 'small-title-600': { fontSize: 22, fontWeight: '600' }, 'large-400': { fontSize: 20, fontWeight: '400' }, 'large-500': { fontSize: 20, fontWeight: '500' }, 'large-600': { fontSize: 20, fontWeight: '600' }, 'medium-400': { fontSize: 18, fontWeight: '400' }, 'medium-500': { fontSize: 18, fontWeight: '500' }, 'medium-600': { fontSize: 18, fontWeight: '600' }, 'paragraph-400': { fontSize: 16, fontWeight: '400' }, 'paragraph-500': { fontSize: 16, fontWeight: '500' }, 'paragraph-600': { fontSize: 16, fontWeight: '600' }, 'small-400': { fontSize: 14, fontWeight: '400' }, 'small-500': { fontSize: 14, fontWeight: '500' }, 'small-600': { fontSize: 14, fontWeight: '600' }, 'tiny-400': { fontSize: 12, fontWeight: '400' }, 'tiny-500': { fontSize: 12, fontWeight: '500' }, 'tiny-600': { fontSize: 12, fontWeight: '600' }, 'micro-600': { fontSize: 10, fontWeight: '600', letterSpacing: 0.2 }, 'micro-700': { fontSize: 10, fontWeight: '700', letterSpacing: 0.2 }, 'center': { textAlign: 'center' } });