mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-08 04:19:25 +00:00
32 lines
765 B
Vue
32 lines
765 B
Vue
<script setup lang="ts">
|
|
import { type HTMLAttributes, computed } from "vue";
|
|
import {
|
|
ScrollAreaCorner,
|
|
ScrollAreaRoot,
|
|
type ScrollAreaRootProps,
|
|
ScrollAreaViewport,
|
|
} from "radix-vue";
|
|
import ScrollBar from "./ScrollBar.vue";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const props = defineProps<
|
|
ScrollAreaRootProps & { class?: HTMLAttributes["class"] }
|
|
>();
|
|
|
|
const delegatedProps = computed(() => {
|
|
const { class: _, ...delegated } = props;
|
|
|
|
return delegated;
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<ScrollAreaRoot v-bind="delegatedProps" :class="cn('relative overflow-hidden', props.class)">
|
|
<ScrollAreaViewport class="h-full w-full rounded-[inherit]">
|
|
<slot />
|
|
</ScrollAreaViewport>
|
|
<ScrollBar />
|
|
<ScrollAreaCorner />
|
|
</ScrollAreaRoot>
|
|
</template>
|