ant-design/components/icon/index.zh-CN.md

143 lines
4.2 KiB
Markdown
Raw Normal View History

2016-03-31 14:17:09 +08:00
---
category: Components
2016-09-21 11:28:38 +08:00
subtitle: 图标
type: General
2016-09-21 11:28:38 +08:00
title: Icon
2016-07-26 19:45:55 +08:00
toc: false
2016-03-31 14:17:09 +08:00
---
2015-05-27 15:43:29 +08:00
语义化的矢量图形。
2015-06-17 19:48:17 +08:00
2015-06-17 18:20:39 +08:00
## 图标的命名规范
2015-12-07 16:32:44 +08:00
我们为每个图标赋予了语义化的命名,命名规则如下:
2015-06-17 18:20:39 +08:00
2017-03-19 14:12:58 +08:00
- 实心和描线图标保持同名,用 `-o` 来区分,比如 `question-circle`(实心) 和 `question-circle-o`(描线);
- 命名顺序:`[图标名]-[形状?]-[描线?]-[方向?]`。
2015-06-17 18:20:39 +08:00
2017-03-19 14:12:58 +08:00
> `?` 为可选。
完整的图标设计规范请访问 [图标规范](/docs/spec/icon)。
2015-06-17 18:20:39 +08:00
2018-07-20 16:55:45 +08:00
## 图标列表
2018-08-16 18:44:43 +08:00
> 点击图标即可复制代码。
2018-08-14 17:17:51 +08:00
2018-08-16 11:41:37 +08:00
### 方向性图标
2018-08-14 17:17:51 +08:00
```__react
import IconSet from 'site/theme/template/IconSet';
ReactDOM.render(<IconSet className="icons" catigory="direction" />, mountNode);
```
2018-08-16 11:41:37 +08:00
### 提示建议性图标
2018-08-14 17:17:51 +08:00
```__react
import IconSet from 'site/theme/template/IconSet';
ReactDOM.render(<IconSet className="icons" catigory="suggestion" />, mountNode);
```
2018-08-16 11:41:37 +08:00
### 网站通用图标
2018-08-14 17:17:51 +08:00
```__react
import IconSet from 'site/theme/template/IconSet';
ReactDOM.render(<IconSet className="icons" catigory="other" />, mountNode);
```
2018-08-16 11:41:37 +08:00
### 品牌与标识
2018-08-14 17:17:51 +08:00
```__react
import IconSet from 'site/theme/template/IconSet';
ReactDOM.render(<IconSet className="icons" catigory="logo" />, mountNode);
```
2015-06-17 18:20:39 +08:00
2018-07-20 16:55:45 +08:00
## API
2016-03-14 18:39:32 +08:00
2018-07-20 16:55:45 +08:00
### Icon
2015-05-27 15:43:29 +08:00
2018-07-20 16:55:45 +08:00
| 参数 | 说明 | 类型 | 默认值 |
| --- | --- | --- | --- |
2018-08-16 11:41:37 +08:00
| type | 图标类型,遵循图标的命名规范 | string | - |
| style | 设置图标的样式,例如 `fontSize``color` | CSSProperties | - |
2018-08-16 18:44:43 +08:00
| svgStyle | 设置图标本身`<svg>`标签的样式 | CSSProperties | - |
2018-08-16 11:41:37 +08:00
| svgClassName | 为图标本身`<svg>`标签设置额外的类名 | string | - |
2018-07-20 16:55:45 +08:00
| spin | 是否有旋转动画 | boolean | false |
2018-08-16 18:44:43 +08:00
| component | 控制如何渲染图标,通常是一个渲染根标签为 `<svg>``React` 组件,**会使 `type` 属性失效** | ComponentType<CustomIconComponentProps\> | - |
2015-12-07 16:32:44 +08:00
2018-07-20 16:55:45 +08:00
所有的图标都会以 `<svg>` 标签渲染,可以使用 `style``className` 设置图标的大小和单色图标的颜色。例如:
2015-06-10 18:13:49 +08:00
2018-07-20 16:55:45 +08:00
```jsx
<Icon type="message" style={{ fontSize: '16px', color: '#08c' }} />
2016-03-07 11:58:14 +08:00
```
2018-08-16 18:44:43 +08:00
如果使用 `webpack`,可以通过配置 [@svgr/webpack](https://www.npmjs.com/package/@svgr/webpack) 来将 `svg` 图标作为 `React` 组件导入。`@svgr/webpack` 的 `options` 选项请参阅 [svgr文档](https://github.com/smooth-code/svgr#options)。
```js
// webpack.config.js
{
2018-08-16 11:41:37 +08:00
test: /\.svg(\?v=\d+\.\d+\.\d+)?$/,
use: [
2018-08-16 11:41:37 +08:00
{
loader: 'babel-loader',
},
{
loader: '@svgr/webpack',
options: {
babel: false,
icon: true,
},
},
],
}
```
```jsx
import { Icon } from 'antd';
2018-08-14 17:17:51 +08:00
import MessageSvg from 'path/to/message.svg'; // path to your '*.svg' file.
ReactDOM.render(
2018-08-16 11:41:37 +08:00
<Icon component={MessageSvg} />,
mountNode
);
```
2018-07-20 16:55:45 +08:00
#### CustomIconComponentProps
2016-03-07 11:58:14 +08:00
2018-08-16 18:44:43 +08:00
`Icon` 中的 `component` 组件的属性如下:
2017-03-03 14:42:00 +08:00
| 字段 | 说明 | 类型 | 只读值 |
2018-07-20 16:55:45 +08:00
| --- | --- | --- | --- |
| width | `svg` 元素宽度 | string \| number | '1em' |
| height | `svg` 元素高度 | string \| number | '1em' |
| fill | `svg` 元素填充的颜色 | string | 'currentColor' |
| className | 计算后的 `svg` 类名 | string | - |
| style | 计算后的 `svg` 元素样式 | CSSProperties | - |
2017-03-03 14:42:00 +08:00
### Icon.createFromIconfontCN(options)
2018-08-20 14:00:51 +08:00
这个方法适用于 `iconfont.cn` 的用户
2018-07-20 16:55:45 +08:00
```js
2018-08-16 18:44:43 +08:00
const MyIcon = Icon.createFromIconfontCN({
namespace: 'foo', // identifier
2018-08-21 18:00:08 +08:00
scriptUrl: '//at.alicdn.com/t/font_8d5l8fzk5b87iudi.js', // generated by iconfont.cn
2018-08-16 18:44:43 +08:00
prefix: 'icon-',
});
2018-07-20 16:55:45 +08:00
ReactDOM.render(<MyIcon type="example" />, mountedNode);
```
2018-07-20 16:55:45 +08:00
其本质上是创建了一个使用 `<use>` 标签来渲染图标的组件。
`options` 的配置项如下:
2017-10-25 10:25:44 +08:00
| 参数 | 说明 | 类型 | 默认值 |
| --- | --- | --- | --- |
2018-08-21 17:52:41 +08:00
| scriptUrl | [iconfont.cn](http://iconfont.cn/) 项目在线生成的 `js` 地址,在 `namespace` 也设置的情况下有效 | string | - |
2018-08-21 18:41:35 +08:00
| extraCommonProps | 给所有的 `svg` 图标 `<Icon />` 组件设置额外的属性 | `{ [key: string]: any }` | {} |
2018-07-20 16:55:45 +08:00
2018-08-21 17:52:41 +08:00
`namespace``scriptUrl` 都设置有效的情况下,组件在渲染前会自动引入 [iconfont.cn](http://iconfont.cn/) 项目中的图标符号集,无需手动引入。
2018-07-20 16:55:45 +08:00
见 [iconfont.cn 使用帮助](http://iconfont.cn/help/detail?spm=a313x.7781069.1998910419.15&helptype=code) 查看如何生成 `js` 地址。