## Icon 图标
提供了一套常用的图标集合。
### 使用方法
直接通过设置类名为 `el-icon-iconName` 来使用即可。例如:
:::demo
```html
1. 修改第三方图标库的前缀(见下方说明)
2. 添加以下 CSS:
```CSS [class^="el-icon-my"], [class*=" el-icon-my"] { font-family:"your-font-family" !important; /* 以下内容参照第三方图标库本身的规则 */ font-size: inherit; font-style:normal; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } ``` 之后就可以像使用 Element 内置图标一样使用第三方图标。比如在 el-input 中: ```html