shadcn-vue/apps/www/src/public/registry/styles/default/aspect-ratio.json
2023-09-06 10:10:36 +08:00

18 lines
573 B
JSON

{
"name": "aspect-ratio",
"dependencies": [
"radix-vue"
],
"registryDependencies": [],
"files": [
{
"name": "AspectRatio.vue",
"content": "<script setup lang=\"ts\">\nimport { AspectRatio, type AspectRatioProps } from 'radix-vue'\n\nconst props = defineProps<AspectRatioProps>()\n</script>\n\n<template>\n <AspectRatio v-bind=\"props\">\n <slot />\n </AspectRatio>\n</template>\n"
},
{
"name": "index.ts",
"content": "export { default as AspectRatio } from './AspectRatio.vue'\n"
}
],
"type": "components:ui"
}