@oceanbase/design
Version:
The Design System of OceanBase
16 lines • 536 B
JavaScript
import { Typography } from 'antd';
import Text from "./Text";
import Link from "./Link";
import Title from "./Title";
import Paragraph from "./Paragraph";
export * from 'antd/es/typography';
export * from 'antd/es/typography/Base';
export * from 'antd/es/typography/Text';
export * from 'antd/es/typography/Paragraph';
export * from 'antd/es/typography/Link';
export * from 'antd/es/typography/Title';
Typography.Text = Text;
Typography.Link = Link;
Typography.Title = Title;
Typography.Paragraph = Paragraph;
export default Typography;