shadcn-vue/apps/www/src/lib/registry/new-york/example/ButtonDestructiveDemo.vue
selemondev 9422d17e8e 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
2023-11-09 10:45:27 +03:00

10 lines
179 B
Vue

<script setup lang="ts">
import { Button } from '@/lib/registry/new-york/ui/button'
</script>
<template>
<Button variant="destructive">
Destructive
</Button>
</template>