14 lines
236 B
TypeScript
14 lines
236 B
TypeScript
import { Input } from "@/components/ui/input";
|
|
|
|
export function Search() {
|
|
return (
|
|
<div>
|
|
<Input
|
|
type="search"
|
|
placeholder="Search..."
|
|
className="sm:w-[200px] lg:w-[300px]"
|
|
/>
|
|
</div>
|
|
);
|
|
}
|