import * as React from "react" import {Input} from "@/components/ui/input"; import {cn} from "@/lib/utils"; import { Search } from 'lucide-react' export interface InputProps extends React.InputHTMLAttributes {} const SearchBar = React.forwardRef( ({ className, type, ...props }, ref) => { return (
) } ) SearchBar.displayName = "SearchBar" export { SearchBar }