anvil/striker-ui/components/Text/MonoText.tsx
2023-04-03 13:14:00 -04:00

15 lines
346 B
TypeScript

import { FC } from 'react';
import { BodyTextProps } from './BodyText';
import SmallText from './SmallText';
const MonoText: FC<BodyTextProps> = ({ sx, ...bodyTextRestProps }) => (
<SmallText
monospaced
sx={{ alignItems: 'center', display: 'flex', height: '100%', ...sx }}
{...bodyTextRestProps}
/>
);
export default MonoText;