frontend/components/ui/aspect-ratio/AspectRatio.vue
2024-12-02 16:07:52 +01:00

12 lines
232 B
Vue

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