# @ant-design/icons

> [![NPM version](https://img.shields.io/npm/v/@ant-design/icons.svg?style=flat)](https://npmjs.org/package/@ant-design/icons) [![NPM downloads](http://img.shields.io/npm/dm/@ant-design/icons.svg?style=flat)](https://npmjs.org/package/@ant-design/icons)

Latest version **6.3.4** (published 2026-08-31) · MIT license · 0 weekly downloads

## Install

```sh
npm install @ant-design/icons
pnpm add @ant-design/icons
yarn add @ant-design/icons
bun add @ant-design/icons
```

## Health

**Score 70/100 (B)** — status: active.

Positive: has types; esm support; no vulnerabilities; recently updated; high maintenance score; high quality score.

Warnings: low downloads; large bundle.

## Facts

| | |
|---|---|
| Version | 6.3.4 |
| Published | 2026-08-31 |
| First published | 2018-07-18 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Node | >=8 |
| Dependencies | 4 |
| Unpacked size | 10.6 MB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1090 |
| Maintainers | afc163, zombiej, chenshuai2144, arvinxx, madccc |

## Links

- npm: https://www.npmjs.com/package/@ant-design/icons
- Repository: https://github.com/ant-design/ant-design-icons.git#master
- Homepage: https://github.com/ant-design/ant-design-icons/tree/master#readme
- Issues: https://github.com/ant-design/ant-design-icons/issues
- npm.io page: https://npm.io/package/@ant-design/icons

## Dependencies (4)

- [clsx](https://npm.io/package/clsx.md) ^2.1.1
- [@ant-design/colors](https://npm.io/package/@ant-design/colors.md) ^8.0.1
- [@rc-component/util](https://npm.io/package/@rc-component/util.md) ^1.11.0
- [@ant-design/icons-svg](https://npm.io/package/@ant-design/icons-svg.md) ^4.6.0

## Recent versions

- 6.3.4 (latest) — 2026-08-31
- 6.2.6-alpha.0 (alpha) — 2026-06-24
- 4.0.0-rc.0 (next) — 2020-01-15
- 6.3.3 — 2026-08-31
- 6.3.2 — 2026-06-27
- 6.3.1 — 2026-06-26
- 6.3.0 — 2026-06-26
- 6.2.5 — 2026-05-28
- 6.2.4 — 2026-05-28
- 6.2.3 — 2026-05-13
- 6.2.2 — 2026-04-27
- 6.2.1 — 2026-04-27
- 6.2.0 — 2026-04-27
- 6.1.1 — 2026-03-26
- 6.1.0 — 2025-10-01
- … 146 more at https://npm.io/package/@ant-design/icons/versions

## README

# Ant Design Icons for React

[![NPM version](https://img.shields.io/npm/v/@ant-design/icons.svg?style=flat)](https://npmjs.org/package/@ant-design/icons) [![NPM downloads](http://img.shields.io/npm/dm/@ant-design/icons.svg?style=flat)](https://npmjs.org/package/@ant-design/icons)

## Install

```bash
yarn add @ant-design/icons
```

## Basic Usage

You can import it directly or destructure from `@ant-design/icons` when tree-shaking enabled.

```ts
import SmileOutlined from '@ant-design/icons/SmileOutlined';
import { SmileOutlined } from '@ant-design/icons';

import SmileFilled from '@ant-design/icons/SmileFilled';
import SmileTwoTone from '@ant-design/icons/SmileTwoTone';
import { SmileFilled, SmileTwoTone } from '@ant-design/icons';
```

## Component Interface

```ts
interface AntdIconProps {
  className?: string;
  onClick?: React.MouseEventHandler<SVGSVGElement>;
  style?: React.CSSProperties;
}
```

## Release

```bash
ut generate
ut build
npm publish
```

---
_Source: https://npm.io/package/@ant-design/icons · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
