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