* docs: improve the api reference of all the components * docs(app): #152 add new-york theme This pull request is intended to add the new-york theme for the newly created component examples. Closes: #152 * chore: build registry * chore: change usage of lucide icon in new-york --------- Co-authored-by: zernonia <zernonia@gmail.com>
12 lines
257 B
Vue
12 lines
257 B
Vue
<script setup lang="ts">
|
|
import { Loader2 } from 'lucide-vue-next'
|
|
import { Button } from '@/lib/registry/default/ui/button'
|
|
</script>
|
|
|
|
<template>
|
|
<Button disabled>
|
|
<Loader2 class="w-4 h-4 mr-2 animate-spin" />
|
|
Please wait
|
|
</Button>
|
|
</template>
|