import * as React from "react"; import type { DisplayTypographyOwnProps, PolymorphicWithRef } from "../types"; import { DisplayTypographyBase } from "../base-components"; type DisplayTypographyProps = PolymorphicWithRef< T, DisplayTypographyOwnProps >; type DisplayTypographyElement = ( props: DisplayTypographyProps ) => React.ReactElement>; const DisplayTypography: DisplayTypographyElement = React.forwardRef( ( props: DisplayTypographyProps, innerRef: typeof props.ref ) => { const { component, ...rest } = props; return ; } ); export default DisplayTypography;