"use client" /** * Icon-only search affordance for compact secondary rails and narrow panels. * Matches primary sidebar collapsed hit target (`size-9`). */ import * as React from "react" import { Tip } from "@/components/ui/tip" import { cn } from "@/lib/utils" export function SidebarCollapsedSearchButton({ label, onActivate, className, }: { label: string onActivate: () => void className?: string }) { return (