Update dependencies and refactor icon imports across the codebase

This commit is contained in:
Amruth Pillai
2025-10-01 10:38:50 +02:00
parent c525f8d2cc
commit 6d37769e38
72 changed files with 6496 additions and 5107 deletions

View File

@ -1,4 +1,4 @@
import { Check } from "@phosphor-icons/react";
import { CheckIcon } from "@phosphor-icons/react";
import * as CheckboxPrimitive from "@radix-ui/react-checkbox";
import { cn } from "@reactive-resume/utils";
import { forwardRef } from "react";
@ -16,7 +16,7 @@ export const Checkbox = forwardRef<
{...props}
>
<CheckboxPrimitive.Indicator className={cn("flex items-center justify-center text-current")}>
<Check size={12} weight="bold" />
<CheckIcon size={12} weight="bold" />
</CheckboxPrimitive.Indicator>
</CheckboxPrimitive.Root>
));