Files
myeasycms-v2/apps/nextjs/src/app/(dashboard)/_components/search.tsx

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