@dossierhq/design
Version:
The design system for Dossier.
18 lines (17 loc) • 435 B
TypeScript
declare const StyleClassName: {
headline1: string;
headline2: string;
headline3: string;
headline4: string;
headline5: string;
headline6: string;
subtitle1: string;
subtitle2: string;
body1: string;
body2: string;
code1: string;
code2: string;
};
export type TextStyle = keyof typeof StyleClassName;
export declare function toTextStyleClassName(textStyle: TextStyle): string;
export {};