11 lines
254 B
Vue
11 lines
254 B
Vue
<script setup lang="ts">
|
|
import { Button } from '@/lib/registry/default/ui/button'
|
|
import { ChevronRight } from 'lucide-vue-next'
|
|
</script>
|
|
|
|
<template>
|
|
<Button variant="outline" size="icon">
|
|
<ChevronRight class="w-4 h-4" />
|
|
</Button>
|
|
</template>
|