10 lines
246 B
TypeScript
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;
|