UNPKG

378 BTypeScriptView Raw
1import { FunctionComponent } from 'react';
2export interface TypesetProps {
3 fontFamily?: string;
4 fontSizes: string[];
5 fontWeight?: number;
6 sampleText?: string;
7}
8/**
9 * Convenient styleguide documentation showing examples of type
10 * with different sizes and weights and configurable sample text.
11 */
12export declare const Typeset: FunctionComponent<TypesetProps>;