More blurriness, and stylish
This commit is contained in:
14
components/ui/aspect-ratio/AspectRatio.vue
Normal file
14
components/ui/aspect-ratio/AspectRatio.vue
Normal file
@ -0,0 +1,14 @@
|
||||
<script setup lang="ts">
|
||||
import { AspectRatio, type AspectRatioProps } from 'reka-ui'
|
||||
|
||||
const props = defineProps<AspectRatioProps>()
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<AspectRatio
|
||||
data-slot="aspect-ratio"
|
||||
v-bind="props"
|
||||
>
|
||||
<slot />
|
||||
</AspectRatio>
|
||||
</template>
|
Reference in New Issue
Block a user