import { AlertTriangle } from "lucide-react"; import { cn } from "@/lib/utils"; interface AlertPillProps { value: number; label?: string; iconSize?: number; textSize?: "xs" | "sm" | "base"; } export function AlertPill({ value, label = "Fail Findings", iconSize = 12, textSize = "xs", }: AlertPillProps) { return (