Open In App

ReactJS UI Ant Design Badge Component

Last Updated : 19 May, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

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/



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads