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