34 lines
1.1 KiB
TypeScript
34 lines
1.1 KiB
TypeScript
"use client"
|
|
|
|
import * as React from "react"
|
|
import { cn } from "@/lib/utils"
|
|
import { Icons } from "@/components/icons"
|
|
|
|
export interface SearchInputProps
|
|
extends React.InputHTMLAttributes<HTMLInputElement> {}
|
|
|
|
const SearchInput = React.forwardRef<HTMLInputElement, SearchInputProps>(
|
|
({ className, type, ...props }, ref) => {
|
|
return (
|
|
<div className="relative">
|
|
<Icons.search className="absolute left-3 top-1/2 h-4 w-4 -translate-y-1/2 text-muted-foreground" />
|
|
<input
|
|
type={type}
|
|
className={cn(
|
|
"flex h-9 w-full rounded-md border border-input bg-background pl-9 pr-3 py-1 text-sm shadow-sm transition-colors",
|
|
"file:border-0 file:bg-transparent file:text-sm file:font-medium",
|
|
"placeholder:text-muted-foreground",
|
|
"focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring",
|
|
"disabled:cursor-not-allowed disabled:opacity-50",
|
|
className
|
|
)}
|
|
ref={ref}
|
|
{...props}
|
|
/>
|
|
</div>
|
|
)
|
|
}
|
|
)
|
|
SearchInput.displayName = "SearchInput"
|
|
|
|
export { SearchInput }
|