11 lines
256 B
Vue
11 lines
256 B
Vue
<script setup lang="ts">
|
|
import { Button } from '@/lib/registry/new-york/ui/button'
|
|
import { EnvelopeOpenIcon } from '@radix-icons/vue'
|
|
</script>
|
|
|
|
<template>
|
|
<Button>
|
|
<EnvelopeOpenIcon class="w-4 h-4 mr-2" /> Login with Email
|
|
</Button>
|
|
</template>
|