import * as React from "react"; import { cn } from "@/lib/utils/utils"; import { HiSearch } from "react-icons/hi"; const InputSearch = React.forwardRef< HTMLInputElement, React.ComponentProps<"input"> >(({ className, type, ...props }, ref) => { return (
); }); InputSearch.displayName = "Input"; export { InputSearch };