ags/widget/Notifications.tsx
Benjamin Palko e62a7afa60 COMMIT
2025-06-13 17:21:59 -04:00

14 lines
336 B
TypeScript

import { Gdk, Gtk } from "astal/gtk4";
const Notifications = function () {
return (
<menubutton hexpand halign={Gtk.Align.END}>
<label cursor={Gdk.Cursor.new_from_name("pointer", null)} label={""} />
<popover>
<Gtk.Grid></Gtk.Grid>
</popover>
</menubutton>
);
};
export default Notifications;