Removed default lucide icons and updated some packages

This commit is contained in:
Alexis
2025-04-22 14:09:25 +02:00
parent d02bfacd57
commit 73f5e01244
21 changed files with 409 additions and 398 deletions

View File

@@ -9,8 +9,8 @@ import {
DialogPortal,
useForwardPropsEmits
} from "radix-vue"
import { X } from "lucide-vue-next"
import { cn } from "~/lib/utils"
import { PhX } from "@phosphor-icons/vue";
const props = defineProps<DialogContentProps & { class?: HTMLAttributes["class"] }>()
const emits = defineEmits<DialogContentEmits>()
@@ -55,7 +55,7 @@ const forwarded = useForwardPropsEmits(delegatedProps, emits)
<DialogClose
class="absolute top-3 right-3 p-0.5 transition-colors rounded-md hover:bg-secondary"
>
<X class="w-4 h-4" />
<PhX class="w-4 h-4" />
<span class="sr-only">Close</span>
</DialogClose>
</DialogContent>