Skip to content

Commit 8317a60

Browse files
chore: use lucide react icon
1 parent a33526b commit 8317a60

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/web/app/routes/ws/deployments/_components/environmentversiondecisions/ApprovalDecision.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { IconCircleCheck, IconCircleX } from "@tabler/icons-react";
1+
import { CheckCircle, XCircle } from "lucide-react";
22
import { toast } from "sonner";
33

44
import type { DeploymentVersion, Environment } from "./types";
@@ -42,15 +42,15 @@ export function ApprovalDecision({
4242
<div className="flex items-center gap-1.5">
4343
{approvalResult.allowed && (
4444
<>
45-
<IconCircleCheck className="size-3 text-green-500" />
45+
<CheckCircle className="size-3 text-green-500" />
4646
<span className="text-xs font-semibold text-muted-foreground">
4747
Approved
4848
</span>
4949
</>
5050
)}
5151
{!approvalResult.allowed && (
5252
<>
53-
<IconCircleX className="size-3 text-red-500" />
53+
<XCircle className="size-3 text-red-500" />
5454
<span className="text-xs font-semibold text-muted-foreground">
5555
Not approved ({approvalResult.approvers.length}/
5656
{approvalResult.minApprovals})

0 commit comments

Comments
 (0)