/****************************************************************** * Copyright (C) 2022 LvChengbin * * File: HTML/index.tsx * Author: LvChengbin * Time: 01/01/2022 * Description: ******************************************************************/ import { SxProps, Theme } from '@mui/material/styles'; export interface HTMLProps { content?: string; sx?: SxProps; className?: string; } export default function HTML({ content, className, sx }: HTMLProps): JSX.Element;