How to use Ant Design Icons with React.js

Updated: February 13, 2023 By: Napoleon Post a comment

Ant Design provides a set of free, high-quality icons for web applications. you can use this set of icons separately without having to use other Ant Design stuff.

This article shows you how to use Ant Design Icons in a React.js project.

1. Install the required package:

npm install @ant-design/icons --save

If you don’t want to use other utilities of Ant Design, then there is no need to install any other libraries.

2. Import the icons you need, for example:

import { CheckCircleFilled } from '@ant-design/icons';

You can also see them in the official docs.

Note: To see the full list of available icons, go to this file:

<your_project>/node_modules/@ant-design/icons/lib/icons/index.d.ts

3. Try some Ant Design Icons with the style property:

import React from "react";
import {
  CheckCircleFilled,
  LikeFilled,
  GoldFilled,
  HomeFilled,
} from "@ant-design/icons";

function App() {
  return (
    <center style={{ marginTop: 100 }}>
      <CheckCircleFilled style={{ fontSize: 150, color: "green" }} />
      <LikeFilled style={{ fontSize: 150, color: "blue" }} />
      <GoldFilled style={{ fontSize: 200, color: "orange" }} spin={true} />
      <HomeFilled style={{ fontSize: 150, color: "purple" }} />
    </center>
  );
}

export default App;

Output:

Futher reading:

You can also check our React category page and React Native category page for the latest tutorials and examples.

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments

Related Articles