Files
simrsx-fe/app/components/pub/ui/aspect-ratio/AspectRatio.vue
T
Munawwirul Jamal 3eb9dde21d Dev cleaning (#106)
2025-10-08 00:03:36 +07:00

13 lines
257 B
Vue

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