11 lines
230 B
Vue
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>
|