@wingsuit-designsystem/storybook
Version:
Wingsuit Storybook Integration.
15 lines (14 loc) • 439 B
TypeScript
import { FunctionComponent } from 'react';
export interface TypesetProps {
fontFamily: string;
classNamePrefix: string;
fontSizes: any;
fontWeight?: number;
sampleText?: string;
}
/**
* Convenient styleguide documentation showing examples of type
* with different sizes and weights and configurable sample text.
*/
export declare const Typeset: FunctionComponent<TypesetProps>;
export default Typeset;