13 lines
284 B
JavaScript
13 lines
284 B
JavaScript
export const CloseButton = (notif, notifs) => {
|
|
return Widget.Button({
|
|
class_name: "close-notification-button",
|
|
on_primary_click: () => {
|
|
notifs.CloseNotification(notif.id);
|
|
},
|
|
child: Widget.Label({
|
|
label: "",
|
|
hpack: "center",
|
|
}),
|
|
});
|
|
};
|