anvil/striker-ui/components/Text/SmallText.tsx
2022-11-28 14:37:19 -05:00

14 lines
318 B
TypeScript

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