Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0e364fc

Browse files
committed
feat: use Lucide instead of Radix icons
1 parent 9d6bcbf commit 0e364fc

File tree

4 files changed

+6
-22
lines changed

4 files changed

+6
-22
lines changed

site/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@
5050
"@mui/system": "5.16.7",
5151
"@mui/utils": "5.16.6",
5252
"@mui/x-tree-view": "7.18.0",
53-
"@radix-ui/react-icons": "1.3.0",
5453
"@radix-ui/react-slot": "1.1.0",
5554
"@tanstack/react-query-devtools": "4.35.3",
5655
"@xterm/addon-canvas": "0.7.0",

site/pnpm-lock.yaml

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

site/src/pages/DeploymentSettingsPage/PremiumPage/PremiumPageView.tsx

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ExternalLinkIcon } from "@radix-ui/react-icons";
1+
import { SquareArrowOutUpRight } from "lucide-react";
22
import { Button } from "components/ui/button";
33
import type { FC } from "react";
44
import { docs } from "utils/docs";
@@ -37,7 +37,7 @@ const EnterpriseVersion: FC = () => {
3737
<h2 className="text-sm font-semibold m-0">
3838
Multi-Organization Access Controls&nbsp;
3939
</h2>
40-
<ExternalLinkIcon />
40+
<SquareArrowOutUpRight size={14} />
4141
</span>
4242
</a>
4343
<p className="text-sm max-w-xl text-content-secondary mt-0 font-medium">
@@ -53,7 +53,7 @@ const EnterpriseVersion: FC = () => {
5353
>
5454
<span className="flex items-center">
5555
<h2 className="text-sm font-semibold m-0">Custom Role&nbsp;</h2>
56-
<ExternalLinkIcon />
56+
<SquareArrowOutUpRight size={14} />
5757
</span>
5858
</a>
5959
<p className="text-sm max-w-xl text-content-secondary mt-0 font-medium">
@@ -67,11 +67,11 @@ const EnterpriseVersion: FC = () => {
6767
className="no-underline text-sm text-content-link"
6868
href={docs("/admin/users/quotas")}
6969
>
70-
<span className="flex items-center">
70+
<span className="flex items-center text-sm">
7171
<h2 className="text-sm font-semibold m-0">
7272
Org-Level Quotas for Chargeback&nbsp;
7373
</h2>
74-
<ExternalLinkIcon />
74+
<SquareArrowOutUpRight size={14} />
7575
</span>
7676
</a>
7777
<p className="text-sm max-w-xl text-content-secondary mt-0 font-medium">

site/tsconfig.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,7 @@
1616
"skipLibCheck": true,
1717
"strict": true,
1818
"target": "es2020",
19-
"baseUrl": "src/",
20-
"paths": {
21-
"@/*": ["./*"]
22-
}
19+
"baseUrl": "src/"
2320
},
2421
"include": ["**/*.ts", "**/*.tsx"],
2522
"exclude": ["node_modules/", "_jest"],

0 commit comments

Comments
 (0)