14 lines
233 B
TypeScript
14 lines
233 B
TypeScript
import { Input } from "@acme/ui/input";
|
|
|
|
export function Search() {
|
|
return (
|
|
<div>
|
|
<Input
|
|
type="search"
|
|
placeholder="Search..."
|
|
className="h-9 md:w-[100px] lg:w-[300px]"
|
|
/>
|
|
</div>
|
|
);
|
|
}
|