import type React from "react"; export interface StatusPillProps { variant: "success" | "danger" | "warning" | "info" | "default"; children: React.ReactNode; className?: string; } export function StatusPill({ variant, children, className = "" }: StatusPillProps) { return ( {children} ); }