import { Text } from './Text'; export const Caption1 = Text.customize({ variant: 'caption1', }); export const Caption1Strong = Text.customize({ variant: 'caption1Strong', }); export const Caption2 = Text.customize({ variant: 'caption2', }); export const Body1 = Text.customize({ variant: 'body1', }); export const Body1Strong = Text.customize({ variant: 'body1Strong', }); export const Body2 = Text.customize({ variant: 'body2', }); export const Body2Strong = Text.customize({ variant: 'body2Strong', }); export const Subtitle1 = null; // Not supported on iOS export const Subtitle1Strong = null; // Not supported on iOS export const Subtitle2 = null; // Not supported on iOS export const Subtitle2Strong = null; // Not supported on iOS export const Title1 = Text.customize({ variant: 'title1', }); export const Title1Strong = null; // Not supported on iOS export const Title2 = Text.customize({ variant: 'title2', }); export const Title3 = Text.customize({ variant: 'title3', }); export const LargeTitle = Text.customize({ variant: 'largeTitle', }); export const Display = Text.customize({ variant: 'display', });