@lunalytics/ui
Version:
React based component library created to be used in Lunalytics
32 lines (31 loc) • 569 B
TypeScript
export interface FontSizes {
xs: string;
sm: string;
md: string;
lg: string;
xl: string;
'2xl': string;
'3xl': string;
'4xl': string;
'5xl': string;
'6xl': string;
'7xl': string;
'8xl': string;
'9xl': string;
}
export interface FontWeights {
hairline: number;
thin: number;
light: number;
normal: number;
medium: number;
semibold: number;
bold: number;
extrabold: number;
black: number;
}
export interface Font {
size: FontSizes;
weight: FontWeights;
family: string;
}