diff --git a/src/lib/components/atoms/BottomSheet.svelte b/src/lib/components/atoms/BottomSheet.svelte index 088dc63..f23acae 100644 --- a/src/lib/components/atoms/BottomSheet.svelte +++ b/src/lib/components/atoms/BottomSheet.svelte @@ -11,7 +11,7 @@ onclose?: () => void; } - let { children, isOpen = $bindable(), onclose, ...props }: Props = $props(); + let { children, class: className, isOpen = $bindable(), onclose }: Props = $props(); {#if isOpen} @@ -32,7 +32,7 @@ class="flex max-h-[70vh] min-h-[30vh] flex-col rounded-t-2xl bg-white" transition:fly|global={{ y: 100, duration: 200 }} > -