import { PinIcon } from './icons'; interface Props { count: number; onClick: () => void; } // Compact chip rendered in the conv header that opens the pinned panel. // Renders nothing when count is 0 so a fresh conv shows no clutter. export function PinnedMessagesPill({ count, onClick }: Props) { if (count === 0) return null; return ( ); }