@hadyfayed/filament-workflow-canvas
Version:
Visual workflow builder and canvas component for Filament applications
15 lines • 478 B
TypeScript
import { FC } from 'react';
export interface ViewportControlsProps {
onZoomIn: () => void;
onZoomOut: () => void;
onFitView: () => void;
orientation?: 'horizontal' | 'vertical';
size?: 'sm' | 'md' | 'lg';
showLabels?: boolean;
}
/**
* ViewportControls component for zoom and view operations
* Provides reusable viewport control buttons
*/
export declare const ViewportControls: FC<ViewportControlsProps>;
//# sourceMappingURL=ViewportControls.d.ts.map