shadcn-vue/apps/www/registry/new-york/example/ButtonLoadingDemo.vue
2024-11-21 11:52:31 +08:00

12 lines
265 B
Vue

<script setup lang="ts">
import { Button } from '@/lib/registry/new-york/ui/button'
import { ReloadIcon } from '@radix-icons/vue'
</script>
<template>
<Button disabled>
<ReloadIcon class="w-4 h-4 mr-2 animate-spin" />
Please wait
</Button>
</template>