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

22 lines
407 B
TypeScript

import { FC } from 'react';
import { BodyTextProps } from './BodyText';
import SmallText from './SmallText';
const InlineMonoText: FC<BodyTextProps> = ({ sx, ...bodyTextRestProps }) => (
<SmallText
{...{
...bodyTextRestProps,
monospaced: true,
sx: {
display: 'inline',
padding: '.1rem .3rem',
...sx,
},
}}
/>
);
export default InlineMonoText;