import { FC } from 'react'; import { BodyTextProps } from './BodyText'; import SmallText from './SmallText'; type InlineMonoTextProps = BodyTextProps; const InlineMonoText: FC = ({ sx, ...bodyTextRestProps }) => ( ); export type { InlineMonoTextProps }; export default InlineMonoText;