This pull request is intended to add the new-york theme for the newly created component examples. Closes: #152
11 lines
255 B
Vue
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>
|