import { Box, Label } from 'resource:///com/github/Aylur/ags/widget.js'; import EventBox from '../misc/cursorbox.js'; export default () => EventBox({ className: 'toggle-off', onPrimaryClickRelease: () => Tablet.toggleOsk(), connections: [[Tablet, self => { self.toggleClassName('toggle-on', Tablet.oskState); }, 'osk-toggled']], child: Box({ className: 'osk-toggle', vertical: false, children: [Label(' 󰌌 ')], }), });