welcome-ui
Version:
Customizable design system with react • styled-components • styled-system and ariakit.
19 lines (18 loc) • 456 B
TypeScript
import { ThemeValues } from '.';
export type ThemeFontFaces = {
'welcome-font': FontFace[];
'welcome-icon-font': FontFace[];
'work-sans': FontFace[];
};
type FontFace = {
display?: FontDisplay;
extensions?: string[];
isVariable?: boolean;
stretch?: string;
style?: string;
uniCodeRange?: string;
url: string;
weight?: string;
};
export declare const fontFaces: (theme: ThemeValues) => ThemeFontFaces;
export {};