import * as React from "react"; import type { CardActionsOwnProps, PolymorphicWithRef } from "../types"; import { CardActionsBase } from "../base-components"; type CardActionsProps = PolymorphicWithRef< T, CardActionsOwnProps >; type CardActionsElement = ( props: CardActionsProps ) => React.ReactElement>; const CardActions: CardActionsElement = React.forwardRef( ( props: CardActionsProps, innerRef: typeof props.ref ) => { const { component, ...rest } = props; return ; } ); export default CardActions;