2023-10-13 19:02:59 -04:00

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>
);
}