@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
6 lines (5 loc) • 336 B
JavaScript
import * as React from 'react';
import SimpleButton from '../../../components/SimpleButton';
export const ButtonNew = (props) => {
return (React.createElement(SimpleButton, { "data-name": "new", tooltip: "New", tone: "accent", icon: "plus", variant: "raised", ...props }, props.children === undefined ? 'New' : props.children));
};