index.js 351 B

12345678910111213
  1. "use client";
  2. import Link from './Link';
  3. import Paragraph from './Paragraph';
  4. import Text from './Text';
  5. import Title from './Title';
  6. import OriginTypography from './Typography';
  7. const Typography = OriginTypography;
  8. Typography.Text = Text;
  9. Typography.Link = Link;
  10. Typography.Title = Title;
  11. Typography.Paragraph = Paragraph;
  12. export default Typography;