import { forwardRef, InputHTMLAttributes } from "react"; import { SearchIcon } from "lucide-react"; import { cn } from "@/lib/cn"; type Props = InputHTMLAttributes & { iconSize?: number; }; export const SearchInput = forwardRef( function SearchInput({ iconSize = 16, className, ...props }, ref) { return (
); }, );