Skip to content

Commit f5a367a

Browse files
authored
refactor: use lucide over radix icon (#1910)
1 parent 2f7c01c commit f5a367a

File tree

3 files changed

+2
-15
lines changed

3 files changed

+2
-15
lines changed

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
"dependencies": {
1919
"@graphql-tools/schema": "10.0.13",
2020
"@headlessui/react": "^1.7.17",
21-
"@radix-ui/react-icons": "^1.3.0",
2221
"@radix-ui/react-radio-group": "^1.1.3",
2322
"@tailwindcss/nesting": "0.0.0-insiders.565cd3e",
2423
"@tailwindcss/typography": "^0.5.10",

pnpm-lock.yaml

-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/app/conf/2023/page.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import { GlobeIcon } from "@radix-ui/react-icons"
21
import { Metadata } from "next"
32
import { About } from "../_components/about"
43
import { Speakers } from "../_components/speakers"
54
import { Sponsors } from "../_components/sponsors"
65
import { Thanks } from "../_components/thanks"
76
import { CalendarIcon, GraphQLConf, HostedByGraphQLFoundation } from "@/icons"
7+
import { Globe } from "lucide-react"
88

99
export const metadata: Metadata = {
1010
title: "GraphQLConf 2023 — Sept 19-21 • SF Bay Area",
@@ -38,7 +38,7 @@ function Hero() {
3838
</div>
3939
<span />
4040
<div className="flex items-center gap-5 max-md:gap-3">
41-
<GlobeIcon className="size-6" />
41+
<Globe className="size-6" />
4242
<span>San Francisco Bay Area, CA</span>
4343
</div>
4444
</div>

0 commit comments

Comments
 (0)