import type { UiSeverity } from "../types"; import { IconGlyph } from "./IconGlyph"; export interface SystemStateProps { title: string; detail?: string; icon?: string; severity?: UiSeverity; } export function SystemState({ title, detail, icon = "mdi:information-outline", severity = "neutral", }: SystemStateProps) { return (

{title}

{detail ?

{detail}

: null}
); }