UNPKG

@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) 345 B
import * as React from 'react'; import SimpleButton from '../../../components/SimpleButton'; export const ButtonClone = (props) => { return (React.createElement(SimpleButton, { "data-name": "clone", tooltip: "Clone", tone: "accent", icon: "clone", variant: "raised", ...props }, props.children === undefined ? 'Clone' : props.children)); };