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