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