'use client'; export function CustomerChips({ customers, onRemove, disabled = false, }: { customers: { id: string; name: string }[]; onRemove: (id: string) => void; disabled?: boolean; }) { if (customers.length === 0) return null; return (
{customers.map((c) => ( {c.name} {!disabled && ( )} ))}
); }