@gladio/badge
v0.10.7
Published
Badge Component
Readme
Badge component
Use it to show state or count into the UI
Installation
yarn add @gladio/badgeUsage
// import the badge component
import Badge from "@gladio/badge"
const MyComponent = () => {
return (
<div>
Notifications <Badge>10</Badge>
</div>
)
}