# SwxIcon
>按钮组件

### 引入

```js
import { SwxIcon } from '@sweetui/sweet-weex-ui'
```
由于`weex`不支持 `Vue.components`，在.vue中注册
```js
  export default {
    components: {
      SwxIcon,
    },
  }
```
### 使用

```vue
  <swxIcon color="#fff" v-if="isCheck">&#xe715;</swxIcon>
```

### Props
| 参数          | 说明            | 类型            | 可选值                 | 默认值   |
|-------------  |---------------- |---------------- |---------------------- |-------- |
| size         | 字体大小		  | String  | - | 24 |
| color         | 图标颜色		  | String  | - | #7F7F7F |
| fontUrl       | 字体图标URL地址  | String  | - | #7F7F7F |
