10 lines
166 B
Vue
10 lines
166 B
Vue
<script setup lang="ts">
|
|
import { Button } from '@/lib/registry/default/ui/button'
|
|
</script>
|
|
|
|
<template>
|
|
<Button variant="ghost">
|
|
Ghost
|
|
</Button>
|
|
</template>
|