UNPKG

@adaptabletools/adaptable

Version:

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

8 lines (7 loc) 388 B
import * as React from 'react'; import SimpleButton from '../../../components/SimpleButton'; export class ButtonMaximise extends React.Component { render() { return (React.createElement(SimpleButton, { "data-name": "maximise", iconSize: 20, tooltip: "Maximize", icon: this.props.useHoirzontalChevron ? 'arrow-right' : 'arrow-down', variant: "text", ...this.props })); } }