/****************************************************************** * Copyright (C) 2020 LvChengbin * * File: Paragraph/index.tsx * Author: LvChengbin * Time: 06/07/2020 * Description: ******************************************************************/ import { SxProps, Theme } from '@mui/material/styles'; import { TypographyProps } from '@mui/material/Typography'; export interface ParagraphProps extends TypographyProps { sx?: SxProps; } export default function Paragraph(props: ParagraphProps): JSX.Element;