feat: Add profile viewer

This commit is contained in:
Jesse Wierzbinski 2024-12-02 16:07:52 +01:00
parent a6c5093cf5
commit 1194bc4ffb
No known key found for this signature in database
19 changed files with 466 additions and 47 deletions

View file

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

View file

@ -0,0 +1 @@
export { default as AspectRatio } from "./AspectRatio.vue";