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