Getting Started with KendoReact Badge
The Badge component is a visual indicator for UI elements. It enables you to easily show statuses, notifications and short messages in your app. Badges provide additional contextual information for other elements on the page.
Basic Usage
The Badge position is determined by its parent element. There are two approaches that you can take in case you have a React component (or HTML element) that may have children or may not.
- When targeting text, HTML tags or React components that can have children, place the Badge as a child. For example, check the
main.jsx
file in the sample below. - When targeting text, HTML tags or React components that cannot have children, use a
BadgeContainer
component to wrap both the targeted element and the Badge. For example, check thesocial-apps.jsx
andcontacts.jsx
files in the sample below.