import { cn } from '@/lib/cn' import { PlantIcon } from '@/components/plants/PlantIcon' import type { Plant } from '@/lib/plants' /** * The Seed Tray strip in the focus-mode toolbar: a row of the garden's * kept-at-hand plants. Tap a chip to arm that plant for tap-to-place (the armed * chip is highlighted); ✕ removes it from the tray; the trailing "+ Plant" chip * opens the full catalog picker. See useSeedTray for persistence. */ export function SeedTray({ trayPlants, armedPlantId, onArm, onRemove, onOpenPicker, }: { trayPlants: Plant[] armedPlantId: number | null onArm: (plant: Plant) => void onRemove: (id: number) => void onOpenPicker: () => void }) { return (