UNPKG

@lobehub/ui

Version:

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

11 lines (10 loc) 336 B
import { CSSProperties, FC, PropsWithChildren } from 'react'; export interface TypographyProps extends PropsWithChildren { className?: string; fontSize?: number; headerMultiple?: number; lineHeight?: number; marginMultiple?: number; style?: CSSProperties; } export declare const Typography: FC<TypographyProps>;