
Product
Introducing Scala and Kotlin Support in Socket
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
@rmwc/badge
Advanced tools
Badges are small status descriptors for UI elements. A badge consists of a small circle, typically containing a number or other short set of characters, that appears in proximity to another object.
RMWC ADDON
Badges are small status descriptors for UI elements. A badge consists of a small circle, typically containing a number or other short set of characters, that appears in proximity to another object.
<Badge align="inline" />
<>
<Badge align="inline" label={20} />
<Badge align="inline" label="99+" />
<Badge align="inline" label="New" />
</>
<>
<Badge theme={['primaryBg', 'onPrimary']} align="inline" />
<Badge style={{ background: 'hotpink' }} align="inline" />
<Badge
theme={['secondaryBg', 'onSecondary']}
align="inline"
label="Theme"
/>
</>
The badge component has been designed to play well with the majority of components in RMWC. You can place it inside of any component that accepts children and its default position will be absolute to the top end corner.
Because passing a Badge as a child doesn't always work (for things like overflow: hidden
elements), you can use the BadgeAnchor
component. This is really just a div with position: relative
and some other sensible layout properties set on it, so you can use this or your own CSS to achieve the same result. Additionally, exact positioning is highly dependent on your design and shape of your components. Badges provide an inset
property that allows you to adjust the positioning of the Badge as necessary.
<>
<BadgeAnchor>
<Button raised label="Button" />
<Badge />
</BadgeAnchor>
<BadgeAnchor>
<Button
raised
label="Button"
theme={['secondaryBg', 'onSecondary']}
/>
<Badge style={{ background: 'hotpink' }} label="Hello" />
</BadgeAnchor>
</>
<BadgeAnchor>
<IconButton icon="notifications" />
<Badge inset="0.75rem" />
</BadgeAnchor>
<>
<BadgeAnchor>
<Avatar
src="images/avatars/ironman.png"
size="large"
name="Tony Stark"
/>
<Badge inset="5px" />
</BadgeAnchor>
<BadgeAnchor>
<Avatar
src="images/avatars/blackwidow.png"
size="large"
name="Natalia Alianovna Romanova"
square
/>
<Badge />
</BadgeAnchor>
</>
Badges can be aligned to the start, end, or use inline alignment. They are also RTL aware. They default to align end.
<>
<BadgeAnchor>
<Button raised label="Align Start" />
<Badge align="start" />
</BadgeAnchor>
<BadgeAnchor>
<Button raised label="Align End" />
<Badge align="end" />
</BadgeAnchor>
</>
You can transition between the standalone indicator and a badge with content. The badge will consider any label
other than null or undefined as valid content.
function Example() {
const [label, setLabel] = React.useState(undefined);
React.useEffect(() => {
const timeout = setTimeout(() => {
switch (label) {
case '99+':
setLabel(undefined);
break;
case '':
setLabel('99+');
break;
case undefined:
setLabel('');
break;
}
}, 1800);
return () => clearTimeout(timeout);
}, [label]);
return (
<BadgeAnchor>
<Button raised label="Button" />
<Badge label={label} exited={label === undefined} />
</BadgeAnchor>
);
}
A Badge component for indicating alerts or counts.
Name | Type | Description |
---|---|---|
align | "end" | "start" | "inline" | How to align the badge. |
exited | boolean | Animates the badge out of view. When this class is removed, the badge will return to view. |
inset | string | number | A value to inset the badge alignment by, useful for positioning the badge on different shaped components. |
label | ReactNode | A label or count for the badge. |
An anchor component for badges.
FAQs
Badges are small status descriptors for UI elements. A badge consists of a small circle, typically containing a number or other short set of characters, that appears in proximity to another object.
The npm package @rmwc/badge receives a total of 310 weekly downloads. As such, @rmwc/badge popularity was classified as not popular.
We found that @rmwc/badge demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
Application Security
/Security News
Socket CEO Feross Aboukhadijeh and a16z partner Joel de la Garza discuss vibe coding, AI-driven software development, and how the rise of LLMs, despite their risks, still points toward a more secure and innovative future.
Research
/Security News
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.