// Types import type { FC } from 'react'; // Custom Core Components import Typography from './Typography'; // Custom Types import type { TypographyProps } from './Typography'; const BodyOne: FC = (props) => { // Props const { children, component = 'p', variant = 'plain', ...otherProps } = props; return ( {children} ); }; export default BodyOne;