# @zarm-design/icons

> @zarm-design/icons

Latest version **0.1.16** (published 2026-07-12) · MIT license · 0 weekly downloads

## Install

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

## Health

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

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

Warnings: low downloads; pre 1.0.

## Facts

| | |
|---|---|
| Version | 0.1.16 |
| Published | 2026-07-12 |
| First published | 2021-05-12 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 3 |
| Unpacked size | 323 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | jerome.lin@zhongan.com |
| Maintainers | linji |

## Links

- npm: https://www.npmjs.com/package/@zarm-design/icons
- npm.io page: https://npm.io/package/@zarm-design/icons

## Dependencies (3)

- [change-case](https://npm.io/package/change-case.md) ^4.1.2
- [@babel/runtime](https://npm.io/package/@babel/runtime.md) ^7.21.0
- [@zarm-design/bem](https://npm.io/package/@zarm-design/bem.md) ^0.0.10

## Recent versions

- 0.1.16 (latest) — 2026-07-12
- 0.1.5-alpha.5 (alpha) — 2023-02-24
- 0.0.1-alpha.3943 (canary) — 2021-05-12
- 0.1.15 — 2024-04-16
- 0.1.15-alpha.0 — 2023-10-26
- 0.1.14 — 2023-10-17
- 0.1.13 — 2023-05-24
- 0.1.12 — 2023-04-11
- 0.1.11 — 2023-03-21
- 0.1.10 — 2023-03-16
- 0.1.9 — 2023-03-13
- 0.1.6 — 2023-03-08
- 0.1.5-alpha.4 — 2023-02-24
- 0.1.5-alpha.3 — 2023-02-23
- 0.1.5-alpha.2 — 2023-01-30
- … 14 more at https://npm.io/package/@zarm-design/icons/versions

## README

<h1 align="center">@zarm-design/icons</h1>

<div align="center">

[![npm latest][1]][0] [![NPM downloads][2]][0]

Zarm Design Icons for React

</div>

## Install

use `npm`

```node
npm i @zarm-design/icons
```

or use `pnpm`

```node
pnpm add @zarm-design/icons
```

## Usage

```js
import React from 'react';
import { render } from 'react-dom';
import { Add, Keyboard, Search } from '@zarm-design/icons';

const App = () => {
  return (
    <>
      <Add />
      <Keyboard />
      <Search />
    </>
  );
};

render(<App />, document.getElementById('root'));
```

> You can find all the icon components based on React [here](https://github.com/ZhongAnTech/zarm/tree/master/packages/zarm-icons/src/react).

## Component Interface

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

[0]: https://www.npmjs.org/package/@zarm-design/icons
[1]: https://img.shields.io/npm/v/@zarm-design/icons.svg
[2]: https://img.shields.io/npm/dm/@zarm-design/icons.svg

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