1
0

p.tsx 384 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 p = (props: PropsWithChildren<TitleProps>)=>{
  6. return <Typography.Paragraph className={`${cssClasses.PREFIX}-component-p`} {...props}/>;
  7. };
  8. export default p;