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