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

24 lines
671 B
TypeScript

import { Notification } from "types/service/notifications";
import { notifHasImg } from "../../menus/notifications/utils.js";
const Image = (notif: Notification) => {
if (notifHasImg(notif)) {
return Widget.Box({
class_name: "notification-card-image-container",
hpack: "center",
vpack: "center",
vexpand: false,
child: Widget.Box({
hpack: "center",
vexpand: false,
class_name: "notification-card-image",
css: `background-image: url("${notif.image}")`,
}),
});
}
return Widget.Box();
};
export { Image };