[[Lucide]]アイコンを使ってローディングを表現する。
```html
<script setup lang="ts">
import { Loader2 } from 'lucide-vue-next'
import { Button } from '@/components/ui/button'
</script>
<template>
<Button disabled>
<Loader2 class="w-4 h-4 mr-2 animate-spin" />
Loading
</Button>
</template>
```