bananas-commerce-admin
Version:
What's this, an admin for apes?
10 lines (9 loc) • 325 B
TypeScript
import React from "react";
export interface CardActionsProps extends React.PropsWithChildren {
/**
* If `true`, the actions will always be visible, regardless of the card's `edit` state.
*/
alwaysVisible?: boolean;
}
export declare const CardActions: React.FC<CardActionsProps>;
export default CardActions;