@adaptabletools/adaptable
Version:
Powerful AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
9 lines (8 loc) • 422 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import * as React from 'react';
import SimpleButton from '../../../components/SimpleButton';
export class ButtonMaximise extends React.Component {
render() {
return (_jsx(SimpleButton, { "data-name": "maximise", iconSize: 20, tooltip: "Maximize", icon: this.props.useHoirzontalChevron ? 'arrow-right' : 'arrow-down', variant: "text", ...this.props }));
}
}