anvil/striker-ui/components/Text/SmallText.tsx

10 lines
246 B
TypeScript
Raw Normal View History

2022-08-17 00:11:59 +00:00
import { FC } from 'react';
import BodyText, { BodyTextProps } from './BodyText';
2023-02-28 06:33:18 +00:00
const SmallText: FC<BodyTextProps> = ({ ...bodyTextRestProps }) => (
2022-08-17 00:11:59 +00:00
<BodyText {...{ variant: 'body2', ...bodyTextRestProps }} />
);
export default SmallText;