@hadyfayed/filament-workflow-canvas
Version:
Visual workflow builder and canvas component for Filament applications
16 lines • 552 B
TypeScript
import { default as React, FC } from 'react';
export interface PropertyPanelFooterProps {
onDelete?: () => void;
onDuplicate?: () => void;
deleteLabel?: string;
duplicateLabel?: string;
customActions?: React.ReactNode;
deleteDisabled?: boolean;
duplicateDisabled?: boolean;
}
/**
* PropertyPanelFooter component for consistent panel footers
* Provides delete, duplicate, and custom action buttons
*/
export declare const PropertyPanelFooter: FC<PropertyPanelFooterProps>;
//# sourceMappingURL=PropertyPanelFooter.d.ts.map