0.10.7 • Published 4 years ago
@gladio/badge v0.10.7
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>
)
}