Files
Supervisor/components/skeleton/ButtonSkeleton.vue
2026-03-09 10:50:41 +01:00

18 lines
286 B
Vue

<template>
<div
class="animate-pulse rounded-md bg-m-tertiary/70 shadow-md/50 shadow-m-black"
:class="customClass"
/>
</template>
<script setup lang="ts">
withDefaults(
defineProps<{
customClass?: string
}>(),
{
customClass: "h-[39px] w-full"
}
)
</script>