shadcn-vue/apps/www/src/public/registry/styles/new-york/aspect-ratio.json
Sadegh Barati d34c620055
chore: lint and enable Volar hybrid mode (#419)
* chore: update deps

* feat: enable Volar hybrid mode

* chore: lint

* chore: build registry
2024-03-20 22:29:42 +03:30

17 lines
555 B
JSON

{
"name": "aspect-ratio",
"dependencies": [],
"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"
}