import * as React from "react"; import type { CardImageOwnProps, PolymorphicWithRef } from "../types"; import { CardImageBase } from "../base-components"; type CardImageProps = PolymorphicWithRef< T, CardImageOwnProps >; type CardImageElement = ( props: CardImageProps ) => React.ReactElement>; const CardImage: CardImageElement = React.forwardRef( ( props: CardImageProps, innerRef: typeof props.ref ) => { const { component, ...rest } = props; return ; } ); export default CardImage;