/****************************************************************** * Copyright (C) 2020 LvChengbin * * File: Strong/index.tsx * Author: LvChengbin * Time: 06/12/2020 * Description: ******************************************************************/ import React from 'react'; import { SxProps, Theme } from '@mui/material/styles'; import { TypographyProps } from '@mui/material/Typography'; export interface StrongProps extends TypographyProps { raw: string; content: React.ReactNode; sx?: SxProps; } export default function Strong(props: StrongProps): JSX.Element;