From 0eab85de5e4a7dc48de040f20823ac256c133576 Mon Sep 17 00:00:00 2001 From: Bastian Masanek Date: Tue, 4 Nov 2025 13:31:22 +0100 Subject: [PATCH] Update SheetContent.vue to replace close icon with CircleX for improved visual consistency - Swapped the X icon for CircleX in the DialogClose component to enhance the design. - Adjusted icon size for better alignment with the overall UI aesthetics. --- app/components/ui/sheet/SheetContent.vue | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/app/components/ui/sheet/SheetContent.vue b/app/components/ui/sheet/SheetContent.vue index e2a0a44..f5aed59 100644 --- a/app/components/ui/sheet/SheetContent.vue +++ b/app/components/ui/sheet/SheetContent.vue @@ -3,7 +3,7 @@ import type { DialogContentEmits, DialogContentProps } from "reka-ui" import type { HTMLAttributes } from "vue" import type { SheetVariants } from "." import { reactiveOmit } from "@vueuse/core" -import { X } from "lucide-vue-next" +import { CircleX } from "lucide-vue-next" import { DialogClose, DialogContent, @@ -36,18 +36,13 @@ const forwarded = useForwardPropsEmits(delegatedProps, emits)