@adaptabletools/adaptable
Version:
Powerful AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
16 lines (15 loc) • 525 B
TypeScript
import * as React from 'react';
import { SimpleButtonProps } from '../../../components/SimpleButton';
type ButtonNewProps = {
variant?: SimpleButtonProps['variant'];
className?: string;
tone?: SimpleButtonProps['tone'];
tooltip?: SimpleButtonProps['tooltip'];
accessLevel?: SimpleButtonProps['accessLevel'];
children?: React.ReactNode;
onClick?: () => void;
disabled?: boolean;
dataName?: string;
};
export declare const ButtonNew: (props: ButtonNewProps) => React.JSX.Element;
export {};