import type { LucideIcon } from 'lucide-react'; import { cn } from '../../lib/classname'; type CourseStatPillProps = { icon: LucideIcon; label: string; className?: string; }; export function CourseStatPill(props: CourseStatPillProps) { const { icon: Icon, label, className } = props; return (
{label}
); }