File tree Expand file tree Collapse file tree 3 files changed +5
-17
lines changed Expand file tree Collapse file tree 3 files changed +5
-17
lines changed Original file line number Diff line number Diff line change @@ -469,9 +469,7 @@ const Page = async ({ params }: { params: { locale: Lang } }) => {
469
469
< Check
470
470
strokeLinecap = "square"
471
471
strokeLinejoin = "miter"
472
- strokeWidth = { 5 }
473
- size = { 14 }
474
- className = "-mb-0.5"
472
+ className = "-mb-0.5 size-3.5 stroke-[5]"
475
473
/>
476
474
</ div >
477
475
< h3 className = "h-fit text-lg font-bold" > { header } </ h3 >
Original file line number Diff line number Diff line change @@ -196,8 +196,7 @@ const ValuesMarquee = ({
196
196
direction = { direction }
197
197
>
198
198
< Check
199
- className = "me-1 size-[1em] text-success group-hover/item:text-white"
200
- strokeWidth = { 4.5 }
199
+ className = "me-1 size-[1em] stroke-[4.5] text-success group-hover/item:text-white"
201
200
strokeLinecap = "square"
202
201
strokeLinejoin = "miter"
203
202
/>
Original file line number Diff line number Diff line change
1
+ import { Check } from "lucide-react"
2
+
1
3
import type { TPresetFilters } from "@/lib/types"
2
4
3
5
import { cn } from "@/lib/utils/cn"
@@ -77,18 +79,7 @@ const PresetFilters = ({
77
79
) }
78
80
>
79
81
{ activePresets . includes ( idx ) && (
80
- < svg
81
- xmlns = "http://www.w3.org/2000/svg"
82
- viewBox = "0 0 24 24"
83
- fill = "none"
84
- stroke = "currentColor"
85
- strokeWidth = "3"
86
- strokeLinecap = "round"
87
- strokeLinejoin = "round"
88
- className = "h-4 w-4 text-background"
89
- >
90
- < polyline points = "20 6 9 17 4 12" > </ polyline >
91
- </ svg >
82
+ < Check className = "size-4 stroke-[3] text-background" />
92
83
) }
93
84
</ div >
94
85
< h3
You can’t perform that action at this time.
0 commit comments