|
|
|
---
|
|
|
|
category: Components
|
|
|
|
subtitle: 图标
|
|
|
|
type: General
|
|
|
|
title: Icon
|
|
|
|
toc: false
|
|
|
|
---
|
|
|
|
|
|
|
|
语义化的矢量图形。
|
|
|
|
|
|
|
|
## 图标的命名规范
|
|
|
|
|
|
|
|
我们为每个图标赋予了语义化的命名,命名规则如下:
|
|
|
|
|
|
|
|
- 实心和描线图标保持同名,用 `-o` 来区分,比如 `question-circle`(实心) 和 `question-circle-o`(描线);
|
|
|
|
- 命名顺序:`[图标名]-[形状?]-[描线?]-[方向?]`。
|
|
|
|
|
|
|
|
> `?` 为可选。
|
|
|
|
|
|
|
|
完整的图标设计规范请访问 [图标规范](/docs/spec/icon)。
|
|
|
|
|
|
|
|
## 图标列表
|
|
|
|
|
|
|
|
请参阅 [Ant Design 图标库](#)。
|
|
|
|
|
|
|
|
## API
|
|
|
|
|
|
|
|
### Icon
|
|
|
|
|
|
|
|
| 参数 | 说明 | 类型 | 默认值 |
|
|
|
|
| --- | --- | --- | --- |
|
|
|
|
| spin | 是否有旋转动画 | boolean | false |
|
|
|
|
| style | 设置图标的样式,例如 fontSize 和 color | object | - |
|
|
|
|
| type | 图标类型 | string | - |
|
|
|
|
|
|
|
|
所有的图标都会以 `<svg>` 标签渲染,可以使用 `style` 和 `className` 设置图标的大小和单色图标的颜色。例如:
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
<Icon type="message" style={{ fontSize: 16, color: '#08c' }} />
|
|
|
|
```
|
|
|
|
|
|
|
|
### Icon.CustomIcon
|
|
|
|
|
|
|
|
| 参数 | 说明 | 类型 | 默认值 |
|
|
|
|
| --- | --- | --- | --- |
|
|
|
|
| spin | 是否有旋转动画 | boolean | false |
|
|
|
|
| style | 设置图标的样式,例如 fontSize 和 color | object | - |
|
|
|
|
| viewBox | 设置图标[视图容器盒](https://developer.mozilla.org/zh-CN/docs/Web/SVG/Attribute/viewBox)的大小 | string | '0 0 1024 1024' |
|
|
|
|
| component | 控制如何渲染图标,通常是一个渲染为 `<svg>` 标签的 `React` 组件 | `React.ComponentType<CustomIconComponentProps>` | - |
|
|
|
|
|
|
|
|
`component` 属性类似 `react-router v4` 中 `<Route />` 组件的 `component` 属性,描述了图标的如何渲染,对其渲染过程拥有很强的编程控制力。
|
|
|
|
|
|
|
|
#### CustomIconComponentProps
|
|
|
|
|
|
|
|
`Icon.CustomIcon` 中的 `component` 组件属性如下:
|
|
|
|
|
|
|
|
| 参数 | 说明 | 类型 | 默认值 |
|
|
|
|
| --- | --- | --- | --- |
|
|
|
|
| width | `svg` 元素宽度 | `Readonly<string | number>` | '1em' |
|
|
|
|
| height | `svg` 元素高度 | `Readonly<string | number>` | '1em' |
|
|
|
|
| fill | `svg` 元素填充的颜色 | `Readonly<string>` | 'currentColor' |
|
|
|
|
| viewBox | 图标[视图容器盒](https://developer.mozilla.org/zh-CN/docs/Web/SVG/Attribute/viewBox)的大小,继承自自定义组件的 `viewBox` 属性 | `Readonly<string>` | '0 0 1024 1024' |
|
|
|
|
|
|
|
|
|
|
|
|
### Icon.create(options)
|
|
|
|
|
|
|
|
使用方式如下:
|
|
|
|
|
|
|
|
```js
|
|
|
|
const MyIcon = Icon.create({});
|
|
|
|
|
|
|
|
// after importing SVG symbols
|
|
|
|
ReactDOM.render(<MyIcon type="example" />, mountedNode);
|
|
|
|
```
|
|
|
|
|
|
|
|
其本质上是创建了一个使用 `<use>` 标签来渲染图标的组件。
|
|
|
|
|
|
|
|
`options` 的配置项如下:
|
|
|
|
|
|
|
|
| 参数 | 说明 | 类型 | 默认值 |
|
|
|
|
| --- | --- | --- | --- |
|
|
|
|
| prefix | 设置图标的前缀,通常以短横线结尾,如 `icon-`、`foo-` | string | '' |
|
|
|
|
| extraCommonProps | 给所有的 `svg` 图标设置额外的属性 | `{ [key: string]: any }` | {} |
|
|
|
|
| namespace | 图标集合的名字空间,在 `scriptUrl` 也设置的情况下有效,用于区分已导入的图标符号集合 | string | - |
|
|
|
|
| scriptUrl | [iconfont.cn](http://iconfont.cn/) 项目在线生成的 `js` 地址,在 `namespace` 也设置的情况下有效 | string | - |
|
|
|
|
|
|
|
|
在 `namespace` 和 `scriptUrl` 都设置有效的情况下,组件在渲染前会自动引入 [iconfont.cn](http://iconfont.cn/) 项目中的图标符号集,无需手动引入。
|
|
|
|
|
|
|
|
见 [iconfont.cn 使用帮助](http://iconfont.cn/help/detail?spm=a313x.7781069.1998910419.15&helptype=code) 查看如何生成 `js` 地址。
|
|
|
|
|
|
|
|
<style>
|
|
|
|
[id^="components-icon-demo-"] .code-box-demo .anticon {
|
|
|
|
font-size: 18px;
|
|
|
|
margin-right: 6px;
|
|
|
|
}
|
|
|
|
</style>
|