---
type: Common
title: Icon
subtitle: 图标
cols: 1
order: 2
pure: true
---

这是对 NG-ZORRO [图标库](https://ng.ant.design/components/icon/en) 的补充，在使用之前，你需要先了解 NG-ZORRO [图标命名空间](https://ng.ant.design/components/icon/zh#%E5%91%BD%E5%90%8D%E7%A9%BA%E9%97%B4) 概念，由于图标是按需动态加载的，你需要配置 angular.json 如下

```json
{
  "assets": [
    {
      "glob": "**/*",
      "input": "./node_modules/@bixi/core/icons",
      "output": "/assets/"
    }
  ]
}
```