@janiscommerce/ui-native
Version:
components library for Janis app
9 lines (8 loc) • 397 B
TypeScript
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;