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

10 lines
246 B
TypeScript

import { FC } from 'react';
import BodyText, { BodyTextProps } from './BodyText';
const SmallText: FC<BodyTextProps> = ({ ...bodyTextRestProps }) => (
<BodyText {...{ variant: 'body2', ...bodyTextRestProps }} />
);
export default SmallText;