title: Icon
sidebar_label: Icon
图标
属性
| 属性名 | 类型 | 默认值 | 说明 |
|---|---|---|---|
| type | String | icon 的类型,有效值:success, success_no_circle, info, warn, waiting, cancel, download, search, clear | |
| size | Number | 23 | icon 的大小,单位 px |
| color | Color | icon 的颜色,同 css 的 color |
各端支持度
| 属性 | 微信小程序 | H5 | ReactNative | 百度小程序 | 支付宝小程序 | 字节跳动小程序 |
|---|---|---|---|---|---|---|
| type | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ |
| size | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ |
| color | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ |
示例:
```jsx import Taro, { Component } from ‘@tarojs/taro’ import { View, Icon } from ‘@tarojs/components’
export default class PageView extends Component { constructor() { super(…arguments) }
render() {
return (
