hcmstorybook
Version:
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
14 lines (13 loc) • 373 B
TypeScript
/// <reference types="react" />
import './Typography.css';
/**
* Typography UI component for user interaction
*/
export declare const TypographyComponent: ({ label, font_family, font_weight, font_style, color, size }: {
label: string;
font_family: any;
font_weight: string;
font_style: any;
color: any;
size: any;
}) => JSX.Element;