import { Action } from 'src/lib/types/power.js';
import PopupWindow from '../shared/popup/index.js';
import powermenu from './helpers/actions.js';
import options from 'src/options.js';
import { isPrimaryClick } from 'src/lib/utils.js';
import icons from 'src/lib/icons/icons.js';
import { bind } from 'astal/binding.js';
import { Gtk } from 'astal/gtk3';
import { RevealerTransitionMap } from 'src/lib/constants/options.js';
const { transition } = options.menus;
const SysButton = ({ action, label }: SysButtonProps): JSX.Element => {
return (
);
};
export default (): JSX.Element => (
RevealerTransitionMap[transition])}>
);
interface SysButtonProps {
action: Action;
label: string;
}