Ant Design Library has this component pre-built, and it is very easy to integrate as well. Badge Components is used as a small numerical value or the status descriptor for UI elements. We can use the following approach in ReactJS to use the Ant Design Badge Component.
Badge Props:
- color: It is used to customize the Badge dot color. Â
- count: It is used to denote the number to show in the badge.
- dot: It is used to indicate whether to display a red dot instead of a count or not.
- offset: It is used to set the offset of the badge dot. Â
- overflowCount: It is used to denote the maximum count to show.Â
- showZero: It is used to indicate whether to show a badge when the count is zero or not. Â
- size: It is used to set the size of the badge if the count is set.
- status: It is used to set the Badge as a status dot. Â
- text: It is used to set the display text of the status dot if the status is set.
- title: It is used to denote the text to show when hovering over the badge.Â
Badge.Ribbon
- color: It is used to customize the Ribbon color.
- placement: It is used for the placement of the Ribbon.
- text: It is used to denote the content inside the Ribbon.
Creating React Application And Installing Module:
-
Step 1: Create a React application using the following command:
npx create-react-app foldername
-
Step 2: After creating your project folder i.e. foldername, move to it using the following command:
cd foldername
-
Step 3: After creating the ReactJS application, Install the required module using the following command:
npm install antd
Project Structure: It will look like the following.
Project Structure
Example: Now write down the following code in the App.js file. Here, App is our default component where we have written our code.
App.js
import React from 'react'import "antd/dist/antd.css"; import { Badge } from 'antd'; import { NotificationOutlined } from '@ant-design/icons'; Â Â export default function App() { Â Â return ( Â Â Â Â <div style={{ Â Â Â Â Â Â display: 'block', width: 700, padding: 30 Â Â Â Â }}> Â Â Â Â Â Â <h4>ReactJS Ant-Design Badge Component</h4> Â Â Â Â Â Â Normal Badge Demo: Â Â Â Â Â Â <Badge count={7}> Â Â Â Â Â Â Â Â <NotificationOutlined style={{ padding: 10 }} /> Â Â Â Â Â Â </Badge>Â <br /> Â Â Â Â Â Â Â Â Badge Ribbon Demo: Â Â Â Â Â Â <Badge.Ribbon text="Sample Push Notification Text"> Â Â Â Â Â Â Â Â <div style={{backgroundColor: 'yellow', Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â width: '100%', height: 50}}> Â Â Â Â Â Â Â Â </div> Â Â Â Â Â Â </Badge.Ribbon>, Â Â Â Â </div> Â Â ); } |
Step to Run Application: Run the application using the following command from the root directory of the project:
npm start
Output: Now open your browser and go to http://localhost:3000/, you will see the following output:
Reference: https://ant.design/components/badge/
