Skip to content

Commit bf6abb5

Browse files
committed
fix: update icon
1 parent 4c8b026 commit bf6abb5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Diff for: src/components/ui/breadcrumb.tsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import * as React from "react"
2-
import { LuChevronRight, LuMoreHorizontal } from "react-icons/lu"
2+
import { LuChevronRight } from "react-icons/lu"
3+
import { MdMoreHoriz } from "react-icons/md"
34
import { Slot } from "@radix-ui/react-slot"
45

56
import { cn } from "@/lib/utils/cn"
@@ -107,7 +108,7 @@ const BreadcrumbEllipsis = ({
107108
className={cn("flex h-9 w-9 items-center justify-center", className)}
108109
{...props}
109110
>
110-
<LuMoreHorizontal className="h-4 w-4" />
111+
<MdMoreHoriz className="h-4 w-4" />
111112
<span className="sr-only">More</span>
112113
</span>
113114
)

0 commit comments

Comments
 (0)