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