h6.tsx 414 B

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