import * as React from "react"; import type { PolymorphicWithRef } from "../types"; import { CardHeaderTitleBase } from "../base-components"; type CardHeaderTitleProps = PolymorphicWithRef; type CardHeaderTitleElement = ( props: CardHeaderTitleProps ) => React.ReactElement>; const CardHeaderTitle: CardHeaderTitleElement = React.forwardRef( ( props: CardHeaderTitleProps, innerRef: typeof props.ref ) => { const { component, ...rest } = props; return ; } ); export default CardHeaderTitle;