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

24 lines
661 B
TypeScript

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