import * as React from "react"; import type { CardContentOwnProps } from "./types"; import type { PolymorphicWithRef } from "../types"; import CardContentBase from "./CardContentBase"; type CardContentProps = PolymorphicWithRef< T, CardContentOwnProps >; type CardContentElement = ( props: CardContentProps ) => React.ReactElement>; const CardContent: CardContentElement = React.forwardRef( ( props: CardContentProps, innerRef: typeof props.ref ) => { const { component, ...rest } = props; return ; } ); export default CardContent;