@adaptabletools/adaptable
Version:
Powerful AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
11 lines (10 loc) • 422 B
TypeScript
import * as React from 'react';
import { AdaptableSystemIconName } from '../../types';
export type ToggleProps = {
onPressedChange: (pressed: boolean) => void;
pressed?: boolean;
icon?: AdaptableSystemIconName;
/** Render as an individual button (not inside a {@link ToggleGroup}). */
standalone?: boolean;
};
export declare const Toggle: React.FunctionComponent<React.PropsWithChildren<ToggleProps>>;