mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-03 09:57:17 +00:00
19 lines
396 B
Vue
19 lines
396 B
Vue
<script setup lang="ts">
|
|
import type { WithClassAsProps } from './interface'
|
|
|
|
const props = defineProps<WithClassAsProps>()
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
role="group"
|
|
aria-roledescription="slide"
|
|
:class="{
|
|
[props.class]: props.class,
|
|
}"
|
|
class="min-w-0 shrink-0 flex justify-center items-center embla__slide h-full grow-0 basis-full"
|
|
>
|
|
<slot />
|
|
</div>
|
|
</template>
|