UNPKG

@kinvolk/headlamp-plugin

Version:

The needed infrastructure for building Headlamp plugins.

11 lines (10 loc) 391 B
import { ReactNode } from 'react'; export declare function GraphControlButton({ children, onClick, title, disabled, }: { children?: ReactNode; title: string; onClick: () => void; disabled?: boolean; }): import("react/jsx-runtime").JSX.Element; export declare function GraphControls({ children }: { children?: React.ReactNode; }): import("react/jsx-runtime").JSX.Element;