1
0

h2.tsx 399 B

12345678910
  1. import * as React from 'react';
  2. import { PropsWithChildren } from 'react';
  3. import Typography, { TitleProps } from '../../typography';
  4. import { cssClasses } from '@douyinfe/semi-foundation/markdownRender/constants';
  5. const h2 = (props: PropsWithChildren<TitleProps>)=>{
  6. return <Typography.Title heading={2} className={`${cssClasses.PREFIX}-component-header`} {...props}/>;
  7. };
  8. export default h2;