/* shadcn Command (cmdk) — 精简版: 仅命令面板列表, 不含 CommandDialog。 用于城市搜索: shouldFilter={false} + 手动过滤 (城市库 2MB, 不交给 cmdk 全量过滤)。 */ import * as React from "react" import { Command as CommandPrimitive } from "cmdk" import { RiSearchLine } from "@remixicon/react" import { cn } from "@/lib/utils" function Command({ className, ...props }: React.ComponentProps) { return ( ) } function CommandInput({ className, ...props }: React.ComponentProps) { return (
) } function CommandList({ className, ...props }: React.ComponentProps) { return ( ) } function CommandEmpty({ ...props }: React.ComponentProps) { return ( ) } function CommandItem({ className, ...props }: React.ComponentProps) { return ( ) } export { Command, CommandInput, CommandList, CommandEmpty, CommandItem }