-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathcomponent
More file actions
29 lines (17 loc) · 944 Bytes
/
component
File metadata and controls
29 lines (17 loc) · 944 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
export default function FilterBar() {
return (
<div className="flex flex-wrap items-center lg:gap-18">
<div className="flex gap-1">
<button className="bg-[#E7E7E7] px-3 py-1.5 rounded text-[#5D5D5D] text-xs md:text-sm font-medium">This Week</button>
<button className="bg-[#E7E7E7] px-3 py-1.5 rounded text-[#5D5D5D] text-xs md:text-sm font-medium">This Month</button>
<button className="bg-[#E7E7E7] px-3 py-1.5 rounded text-[#5D5D5D] text-xs md:text-sm font-medium">This Year</button>
</div>
<div className="flex items-center justify-center gap-4 " >
<button className="bg-[#E7E7E7] px-3 py-1.5 rounded text-[#5D5D5D] text-xs md:text-sm font-medium">Apply</button>
</div>
<div className="ml-auto flex gap-2">
<button className="bg-[#E7E7E7] px-3 py-1.5 rounded text-[#5D5D5D] text-xs md:text-sm font-medium">Filter</button>
</div>
</div>
);
}