import type { LucideIcon } from "lucide-preact";
export interface I_Notification {
id: number
title: string
body: string
read: boolean
urgent?: boolean
icon?: LucideIcon
action?: {
icon?: LucideIcon
text: string
link: string
}
}