图标。组件属性的长度单位默认为 px

参考文档

类型

  1. ComponentType<IconProps>

示例代码

  1. export default class PageView extends Component {
  2. constructor() {
  3. super(...arguments)
  4. }
  5. render() {
  6. return (
  7. <View className='components-page'>
  8. <Icon size='60' type='success' />
  9. <Icon size='60' type='info' />
  10. <Icon size='60' type='warn' color='#ccc' />
  11. <Icon size='60' type='warn' />
  12. <Icon size='60' type='waiting' />
  13. <Icon size='20' type='success_no_circle' />
  14. <Icon size='20' type='warn' />
  15. <Icon size='20' type='success' />
  16. <Icon size='20' type='download' />
  17. <Icon size='20' type='clear' color='red' />
  18. <Icon size='20' type='search' />
  19. </View>
  20. )
  21. }
  22. }

IconProps

参数 类型 默认值 必填 说明
type “success” or “success_no_circle” or “info” or “warn” or “waiting” or “cancel” or “download” or “search” or “clear” icon 的类型
size string 23 icon 的大小,单位px
color string icon 的颜色,同 css 的 color

API 支持度

API 微信小程序 百度小程序 支付宝小程序 字节跳动小程序 H5 React Native
IconProps.type ✔️ ✔️ ✔️ ✔️ ✔️ ✔️
IconProps.size ✔️ ✔️ ✔️ ✔️ ✔️ ✔️
IconProps.color ✔️ ✔️ ✔️ ✔️ ✔️ ✔️

TIconType

icon 的类型

参数 说明
success 成功图标
success_no_circle 成功图标(不带外圈)
info 信息图标
warn 警告图标
waiting 等待图标
cancel 取消图标
download 下载图标
search 搜索图标
clear 清楚图标

API 支持度

API 微信小程序 百度小程序 支付宝小程序 字节跳动小程序 H5 React Native
Icon ✔️ ✔️ ✔️ ✔️ ✔️ ✔️