We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c8b026 commit bf6abb5Copy full SHA for bf6abb5
src/components/ui/breadcrumb.tsx
@@ -1,5 +1,6 @@
1
import * as React from "react"
2
-import { LuChevronRight, LuMoreHorizontal } from "react-icons/lu"
+import { LuChevronRight } from "react-icons/lu"
3
+import { MdMoreHoriz } from "react-icons/md"
4
import { Slot } from "@radix-ui/react-slot"
5
6
import { cn } from "@/lib/utils/cn"
@@ -107,7 +108,7 @@ const BreadcrumbEllipsis = ({
107
108
className={cn("flex h-9 w-9 items-center justify-center", className)}
109
{...props}
110
>
- <LuMoreHorizontal className="h-4 w-4" />
111
+ <MdMoreHoriz className="h-4 w-4" />
112
<span className="sr-only">More</span>
113
</span>
114
)
0 commit comments