/****************************************************************** * Copyright (C) 2020 LvChengbin * * File: Copy/index.tsx * Author: LvChengbin * Time: 05/15/2020 * Description: ******************************************************************/ import { SxProps, Theme } from '@mui/material/styles'; export interface CopyProps { className?: string; content?: string; sx?: SxProps; } export default function Copy(props: CopyProps): JSX.Element;