shadcn-vue/apps/www/src/lib/registry/new-york/example/ButtonIconDemo.vue

11 lines
279 B
Vue

<script setup lang="ts">
import { ChevronRightIcon } from '@radix-icons/vue'
import { Button } from '@/lib/registry/new-york/ui/button'
</script>
<template>
<Button variant="outline" size="icon">
<ChevronRightIcon class="w-4 h-4 rtl:rotate-180" />
</Button>
</template>