import * as React from "react"; import type { BodyTypographyOwnProps, PolymorphicWithRef } from "../types"; import { BodyTypographyBase } from "../base-components"; type BodyTypographyProps = PolymorphicWithRef< T, BodyTypographyOwnProps >; type BodyTypographyElement = ( props: BodyTypographyProps ) => React.ReactElement>; const BodyTypography: BodyTypographyElement = React.forwardRef( ( props: BodyTypographyProps, ref: typeof props.ref ) => { const { component, ...rest } = props; return ; } ); export default BodyTypography;