button
Ghost button with a status badge
Ghost button with a status badge
Загрузка превью…
src/button/c-button-47.vue
<script setup lang="ts">
import { Badge } from "@/components/reui/badge"
import { Button } from "@/components/ui/button"
</script>
<template>
<Button aria-label="Updates (new)">
Updates
<Badge variant="success" size="xs" aria-hidden="true">New</Badge>
</Button>
</template>