export type FontSize = 'xSmall' | 'small' | 'medium' | 'large' | 'xLarge' | 'xxLarge' | 'xxxLarge';
export type FontWeight = 'regular' | 'semiBold' | 'bold';
export type FontStyle = 'normal' | 'italic';
