mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-04 04:59:17 +08:00
61 lines
1.6 KiB
Markdown
Executable File
61 lines
1.6 KiB
Markdown
Executable File
---
|
|
title: Icon 图标
|
|
description:
|
|
type: 0
|
|
group: ⚙ 组件
|
|
menuName: Icon
|
|
icon:
|
|
order: 50
|
|
---
|
|
|
|
> 在 React 项目中使用 Icon 需要引入 `@fortawesome/fontawesome-free`,然后在代码中 `import '@fortawesome/fontawesome-free/css/all.css'`,还有相关的 webpack 配置,具体请参考 [amis-react-starter](https://github.com/aisuda/amis-react-starter) 里的配置
|
|
|
|
## 基本使用
|
|
|
|
```schema
|
|
{
|
|
"type": "page",
|
|
"body": {
|
|
"type": "icon",
|
|
"icon": "cloud"
|
|
}
|
|
}
|
|
```
|
|
|
|
## 颜色及大小调整
|
|
|
|
icon 基于字体实现,所以可以通过[文字颜色](../../../style/typography/text-color)或[大小](../../../style/typography/font-size)来控制它。
|
|
|
|
```schema
|
|
{
|
|
"type": "page",
|
|
"body": {
|
|
"type": "icon",
|
|
"icon": "cloud",
|
|
"className": "text-info text-xl"
|
|
}
|
|
}
|
|
```
|
|
|
|
## 使用图标链接
|
|
|
|
icon 还可以使用 URL 地址,可以从 [iconfont](https://www.iconfont.cn/) 等网站下载图表的 svg 文件上传到服务器,然后使用对应的地址,比如
|
|
|
|
```schema
|
|
{
|
|
"type": "page",
|
|
"body": {
|
|
"type": "icon",
|
|
"icon": "https://suda.cdn.bcebos.com/images%2F2021-01%2Fdiamond.svg"
|
|
}
|
|
}
|
|
```
|
|
|
|
## 属性表
|
|
|
|
| 属性名 | 类型 | 默认值 | 说明 |
|
|
| --------- | -------- | ------ | --------------------------------------- |
|
|
| type | `string` | `icon` | 指定组件类型 |
|
|
| className | `string` | | 外层 CSS 类名 |
|
|
| icon | `string` | | icon 名,支持 fontawesome v4 或使用 url |
|