UNPKG

@hadyfayed/filament-workflow-canvas

Version:

Visual workflow builder and canvas component for Filament applications

15 lines 573 B
import { FC, ReactNode } from 'react'; export interface ControlPanelProps { position?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right'; className?: string; children: ReactNode; orientation?: 'horizontal' | 'vertical'; spacing?: 'tight' | 'normal' | 'loose'; background?: 'solid' | 'blur' | 'transparent'; } /** * ControlPanel component for organizing control elements * Provides consistent styling and positioning for control groups */ export declare const ControlPanel: FC<ControlPanelProps>; //# sourceMappingURL=ControlPanel.d.ts.map