Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.

Commit 304ab5c

Browse files
authored
update Search
1 parent 4ec5fb8 commit 304ab5c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

components/shared/Search.tsx

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import Image from "next/image";
22
import React from "react";
3+
import { Input } from "../ui/input";
34

45
const Search = () => {
56
return (
@@ -10,6 +11,11 @@ const Search = () => {
1011
width={24}
1112
height={24}
1213
/>
14+
<Input
15+
type="text"
16+
placeholder="Search title..."
17+
className="p-regular-16 border-0 bg-grey-50 outline-offset-0 placeholder:text-grey-500 focus:border-0 focus-visible:ring-0 focus-visible:ring-offset-0"
18+
/>
1319
</div>
1420
);
1521
};

0 commit comments

Comments
 (0)