"use client" import * as React from "react" import { cn } from "@/lib/utils" import { Icons } from "@/components/icons" export interface SearchInputProps extends React.InputHTMLAttributes {} const SearchInput = React.forwardRef( ({ className, type, ...props }, ref) => { return (
) } ) SearchInput.displayName = "SearchInput" export { SearchInput }