import type { ReactNode } from 'react'; import { cn } from '../../../lib/utils'; /* ── Container ─────────────────────────────────────────────────── */ type PillBarProps = { children: ReactNode; className?: string; }; export function PillBar({ children, className }: PillBarProps) { return (
{children}
); } /* ── Individual pill button ────────────────────────────────────── */ type PillProps = { isActive: boolean; onClick: () => void; children: ReactNode; className?: string; }; export function Pill({ isActive, onClick, children, className }: PillProps) { return ( ); }