UNPKG

@hadyfayed/filament-workflow-canvas

Version:

Visual workflow builder and canvas component for Filament applications

13 lines 407 B
import { FC, ReactNode } from 'react'; export interface PropertyPanelProps { children: ReactNode; width?: string; position?: 'left' | 'right'; className?: string; } /** * PropertyPanel component for consistent panel layout * Provides the basic structure for property editing panels */ export declare const PropertyPanel: FC<PropertyPanelProps>; //# sourceMappingURL=PropertyPanel.d.ts.map