'use client' interface PillProps { active: boolean onClick: () => void children: React.ReactNode } export default function Pill({ active, onClick, children }: PillProps) { return ( ) }