Skip to content

Commit 1c1ca79

Browse files
authored
Merge pull request #13696 from TylerAPfledderer/chore/deps-remove-lucide-react
chore: remove lucide-react dep
2 parents 3462d93 + 0ec5094 commit 1c1ca79

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@
6363
"lodash.merge": "^4.6.2",
6464
"lodash.shuffle": "^4.2.0",
6565
"lodash.union": "^4.6.0",
66-
"lucide-react": "^0.400.0",
6766
"next": "^14.2.3",
6867
"next-i18next": "^14.0.3",
6968
"next-mdx-remote": "^3.0.8",

src/components/ui/dialog.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import * as React from "react"
2-
import { X } from "lucide-react"
2+
import { MdClose } from "react-icons/md"
33
import * as DialogPrimitive from "@radix-ui/react-dialog"
44

55
import { cn } from "@/lib/utils/cn"
@@ -43,7 +43,7 @@ const DialogContent = React.forwardRef<
4343
>
4444
{children}
4545
<DialogPrimitive.Close className="focus:ring-ring data-[state=open]:bg-accent data-[state=open]:text-muted-foreground absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-offset-2 disabled:pointer-events-none">
46-
<X className="h-4 w-4" />
46+
<MdClose className="h-4 w-4" />
4747
<span className="sr-only">Close</span>
4848
</DialogPrimitive.Close>
4949
</DialogPrimitive.Content>

yarn.lock

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11334,11 +11334,6 @@ lru-cache@^6.0.0:
1133411334
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.2.0.tgz#0bd445ca57363465900f4d1f9bd8db343a4d95c3"
1133511335
integrity sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==
1133611336

11337-
lucide-react@^0.400.0:
11338-
version "0.400.0"
11339-
resolved "https://registry.yarnpkg.com/lucide-react/-/lucide-react-0.400.0.tgz#8dc044bc1ace05fde5bdd4a8a7ad35c9e69ca575"
11340-
integrity sha512-rpp7pFHh3Xd93KHixNgB0SqThMHpYNzsGUu69UaQbSZ75Q/J3m5t6EhKyMT3m4w2WOxmJ2mY0tD3vebnXqQryQ==
11341-
1134211337
lz-string@^1.5.0:
1134311338
version "1.5.0"
1134411339
resolved "https://registry.yarnpkg.com/lz-string/-/lz-string-1.5.0.tgz#c1ab50f77887b712621201ba9fd4e3a6ed099941"

0 commit comments

Comments
 (0)