UNPKG

@adaptabletools/adaptable-cjs

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

14 lines (13 loc) 478 B
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; }; export declare const ButtonNew: (props: ButtonNewProps) => React.JSX.Element; export {};