shadcn-vue/apps/www/registry/default/example/ButtonWithIconDemo.vue
2024-11-21 11:52:31 +08:00

11 lines
230 B
Vue

<script setup lang="ts">
import { Button } from '@/lib/registry/default/ui/button'
import { Mail } from 'lucide-vue-next'
</script>
<template>
<Button>
<Mail class="w-4 h-4 mr-2" /> Login with Email
</Button>
</template>