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