import * as React from "react"; import type { LabelTypographyOwnProps, PolymorphicWithRef } from "../types"; import { LabelTypographyBase } from "../base-components"; type LabelTypographyProps = PolymorphicWithRef< T, LabelTypographyOwnProps >; type LabelTypographyElement = ( props: LabelTypographyProps ) => React.ReactElement>; const LabelTypography: LabelTypographyElement = React.forwardRef( ( props: LabelTypographyProps, innerRef: typeof props.ref ) => { const { component, ...rest } = props; return ; } ); export default LabelTypography;