import { cn } from "@/lib/utils"; type Props = { active: boolean; }; export default function StatusBadge({ active }: Props) { return ( {active ? "Aktiv" : "Inaktiv"} ); }