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;
|