shadcn-vue/apps/www/src/lib/registry/new-york/example/ButtonWithIconDemo.vue
2024-10-14 19:48:05 +08:00

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>