2022-08-17 00:11:59 +00:00
|
|
|
import { FC } from 'react';
|
|
|
|
|
|
|
|
import { BodyTextProps } from './BodyText';
|
|
|
|
import SmallText from './SmallText';
|
|
|
|
|
2023-02-28 06:33:18 +00:00
|
|
|
const MonoText: FC<BodyTextProps> = ({ sx, ...bodyTextRestProps }) => (
|
2022-08-17 00:11:59 +00:00
|
|
|
<SmallText
|
|
|
|
monospaced
|
|
|
|
sx={{ alignItems: 'center', display: 'flex', height: '100%', ...sx }}
|
|
|
|
{...bodyTextRestProps}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
|
|
|
export default MonoText;
|