UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

11 lines (10 loc) 299 B
import { FC } from 'react'; import { DivProps } from "../types"; export interface TypographyProps extends DivProps { fontSize?: number; headerMultiple?: number; lineHeight?: number; marginMultiple?: number; } declare const Typography: FC<TypographyProps>; export default Typography;