UNPKG

design-system-simplefi

Version:

Design System for SimpleFi Applications

13 lines (12 loc) 363 B
import { FunctionComponent } from 'react'; export interface FontProps { title: string; subtitle: string; fontFamily?: string; fontWeight?: number; fontSize?: string; lineHeight?: string; sampleText: string; } export declare const FontItem: FunctionComponent<FontProps>; export declare const FontPalette: FunctionComponent;