UNPKG

@janiscommerce/ui-native

Version:
9 lines (8 loc) 397 B
import { TextStyle } from 'react-native'; import typography, { Typography } from '../../../../../theme/typography'; type TypographyType = keyof Typography; type TypographySize = 'large' | 'medium' | 'small'; declare const getStyleByTypography: (type?: TypographyType | string, size?: TypographySize | string, color?: string) => { typography: TextStyle; }; export default getStyleByTypography;