shadcn-vue/apps/www/src/lib/registry/new-york/example/ButtonIconDemo.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

11 lines
255 B
Vue

<script setup lang="ts">
import { ChevronRight } from 'lucide-vue-next'
import { Button } from '@/lib/registry/new-york/ui/button'
</script>
<template>
<Button variant="outline" size="icon">
<ChevronRight class="w-4 h-4" />
</Button>
</template>