Files
custum-hyprpanel/modules/menus/notifications/notification/close/index.ts
2024-07-26 23:11:33 -07:00

14 lines
435 B
TypeScript

import { Notification, Notifications } from "types/service/notifications";
export const CloseButton = (notif: Notification, notifs: Notifications) => {
return Widget.Button({
class_name: "close-notification-button menu",
on_primary_click: () => {
notifs.CloseNotification(notif.id);
},
child: Widget.Label({
label: "󰅜",
hpack: "center",
}),
});
};