shadcn-vue/apps/www/src/lib/registry/default/ui/aspect-ratio/AspectRatio.vue
2024-11-04 18:19:28 +08:00

12 lines
228 B
Vue

<script setup lang="ts">
import { AspectRatio, type AspectRatioProps } from 'reka-ui'
const props = defineProps<AspectRatioProps>()
</script>
<template>
<AspectRatio v-bind="props">
<slot />
</AspectRatio>
</template>