@ntragas/pouncejstest
Version:
A collection of UI components from Panther labs
44 lines (43 loc) • 950 B
TypeScript
declare const typography: {
fontSizes: {
inherit: string;
'3x-small': string;
'2x-small': string;
'x-small': string;
small: string;
'small-medium': string;
medium: string;
'medium-large': string;
large: string;
'x-large': string;
'2x-large': string;
'3x-large': string;
'4x-large': string;
'5x-large': string;
'6x-large': string;
'7x-large': string;
};
fontWeights: {
normal: number;
medium: number;
bold: number;
};
fonts: {
primary: string;
mono: string;
};
lineHeights: {
normal: string;
none: string;
tight: string;
snug: string;
typical: string;
relaxed: string;
loose: string;
};
letterSpacings: {
normal: string;
relaxed: string;
};
};
export default typography;