import { forwardRef, HTMLAttributes } from 'react'; export const Typography = { h1: forwardRef>( (props, ref) => { return (

{props.children}

); }, ), h2: forwardRef>( (props, ref) => { return (

{props.children}

); }, ), h3: forwardRef>( (props, ref) => { return (

{props.children}

); }, ), h4: forwardRef>( (props, ref) => { return (

{props.children}

); }, ), h5: forwardRef>( (props, ref) => { return (
{props.children}
); }, ), h6: forwardRef>( (props, ref) => { return (
{props.children}
); }, ), };