11 lines
264 B
Vue
11 lines
264 B
Vue
<script setup lang="ts">
|
|
import { Button } from '@/lib/registry/new-york/ui/button'
|
|
import { ChevronRightIcon } from '@radix-icons/vue'
|
|
</script>
|
|
|
|
<template>
|
|
<Button variant="outline" size="icon">
|
|
<ChevronRightIcon class="w-4 h-4" />
|
|
</Button>
|
|
</template>
|