Icon
图标。

属性及支持度

微信小程序 H5 ReactNative 属性名 类型 默认值 说明
type String icon 的类型,有效值:success, success_no_circle, info, warn, waiting, cancel, download, search, clear
size Number 23 icon 的大小,单位 px
color Color icon 的颜色,同 css 的 color
示例:
  1. <Icon size='60' type='success' />
  2. <Icon size='60' type='info' />
  3. <Icon size='60' type='warn' color='#ccc' />
  4. <Icon size='60' type='warn' />
  5. <Icon size='60' type='waiting' />
  6. <Icon size='20' type='success_no_circle' />
  7. <Icon size='20' type='warn' />
  8. <Icon size='20' type='success' />
  9. <Icon size='20' type='download' />
  10. <Icon size='20' type='clear' color='red' />
  11. <Icon size='20' type='search' />