UNPKG

@open-condo/ui

Version:

A set of React UI components for developing applications inside the condo ecosystem

19 lines 635 B
import { Link } from './link'; import { Paragraph } from './paragraph'; import { Text } from './text'; import { Title } from './title'; import './style.less'; import './rtl.less'; export type { TypographyTitleProps } from './title'; export type { TypographyTextProps } from './text'; export type { TypographyLinkProps } from './link'; export type { TypographyParagraphProps } from './paragraph'; export type TypographyType = { Text: typeof Text; Title: typeof Title; Link: typeof Link; Paragraph: typeof Paragraph; }; declare const Typography: TypographyType; export { Typography, }; //# sourceMappingURL=index.d.ts.map