UNPKG

@adaptabletools/adaptable

Version:

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

16 lines (15 loc) 685 B
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { Icon } from '../icons'; const Arrows = () => { return (_jsxs("div", { style: { display: 'flex', flexFlow: 'column', position: 'absolute', fill: 'var(--ab-cmp-dropdown__fill)', top: '50%', right: 'var(--ab-base-space)', transform: 'translate3d(0px, -50%, 0px)', cursor: 'pointer', }, children: [_jsx(Icon, { name: "triangle-up", size: 20, style: { position: 'relative', top: 7 } }), _jsx(Icon, { name: "triangle-down", size: 20, style: { position: 'relative', top: -7 } })] })); }; export default Arrows;