# iconBox 图标组件

### 介绍
通过iconBox图标组件可以使用一些预设的常用图标。

### 引入

```js
import yIconBox from "yesaway-wui/src/components/yIconBox";
```

## 代码演示

### 基础用法
通过`type`设置需要用到的图标，当前参数值支持`iteneraryEmptyList`、`cute`、`money`、`noSign`、`success`。
```html
<y-icon-box type="noSign"></y-icon-box>
```
通过`tips` `desc`设置图片的标题及描述。
```html
<y-icon-box type="success" tips="标题" desc="描述"></y-icon-box>
```
## API

### Props

| 参数 | 说明 | 类型 | 默认值 |
| --- | --- | --- | --- |
| type | 图标名 | _string_ | iteneraryEmptyList |
| tips | 标题文案 | _string_ | --- |
| desc | 描述文案 | _string_ | --- |
| custom-class | 额外类名 | _string_ | --- |
