First commit

This commit is contained in:
2026-08-10 04:29:24 -06:00
commit 26851fa750
71 changed files with 8333 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
<script setup lang="ts">
withDefaults(
defineProps<{ width?: string; height?: string; rounded?: boolean }>(),
{
width: "100%",
height: "1rem",
rounded: false,
},
);
</script>
<template>
<span
class="ds-skeleton"
:style="{ width, height, borderRadius: rounded ? '999px' : undefined }"
aria-hidden="true"
/>
</template>