mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-30 02:58:05 +08:00
1.2 KiB
Executable File
1.2 KiB
Executable File
title | description | type | group | menuName | icon | order |
---|---|---|---|---|---|---|
Icon 图标 | 0 | ⚙ 组件 | Icon | 50 |
在 React 项目中使用 Icon 需要引入
font-awesome@4.7.0
,然后在代码中import 'font-awesome/css/font-awesome.css'
,还有相关的 webpack 配置,具体请参考 amis-react-starter 里的配置
基本使用
{
"type": "page",
"body": {
"type": "icon",
"icon": "cloud"
}
}
颜色及大小调整
icon 基于字体实现,所以可以通过文字颜色或大小来控制它。
{
"type": "page",
"body": {
"type": "icon",
"icon": "cloud",
"className": "text-info text-xl"
}
}
属性名 | 类型 | 默认值 | 说明 |
---|---|---|---|
type | string |
icon |
指定组件类型 |
className | string |
外层 CSS 类名 | |
icon | string |
icon 名,只支持 fontawesome v4 |