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