2016-03-31 14:17:09 +08:00
---
category: Components
2016-11-09 14:43:32 +08:00
type: General
2016-09-08 16:53:50 +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
2017-03-19 14:12:58 +08:00
Semantic vector graphics.
2015-06-17 19:48:17 +08:00
2016-08-20 11:58:31 +08:00
## Icons naming convention
2015-06-17 18:20:39 +08:00
2016-09-10 13:43:30 +08:00
We provide semantic name for every icon, and naming rules are as follows:
2015-06-17 18:20:39 +08:00
2017-03-19 14:12:58 +08:00
- Scanning line icon has the similar name with its solid one, but it's distinguished by `-o` , for example, `question-circle` (a full circle) and `question-circle-o` (an empty circle);
- Naming sequence: `[name]-[shape?]-[outline?]-[direction?]`.
2015-06-17 18:20:39 +08:00
2017-03-19 14:12:58 +08:00
> `?` means is optional.
See more design detail at [here ](/docs/spec/icon ).
2015-06-17 18:20:39 +08:00
2016-08-20 11:58:31 +08:00
## List of icons
2015-05-27 15:43:29 +08:00
2018-08-20 14:00:51 +08:00
> Click the icon and copy the code.
2015-12-07 16:32:44 +08:00
2016-09-10 14:00:57 +08:00
### Directional Icons
2015-06-10 18:13:49 +08:00
2016-03-07 11:58:14 +08:00
```__react
2016-05-27 11:48:08 +08:00
import IconSet from 'site/theme/template/IconSet';
2016-09-18 09:54:47 +08:00
ReactDOM.render(< IconSet className = "icons" catigory = "direction" / > , mountNode);
2016-03-07 11:58:14 +08:00
```
2015-06-05 20:26:41 +08:00
2016-09-10 14:00:57 +08:00
### Suggested Icons
2015-06-05 20:26:41 +08:00
2016-03-07 11:58:14 +08:00
```__react
2017-01-19 15:19:03 +08:00
import IconSet from 'site/theme/template/IconSet';
2016-09-18 09:54:47 +08:00
ReactDOM.render(< IconSet className = "icons" catigory = "suggestion" / > , mountNode);
2016-03-07 11:58:14 +08:00
```
2015-06-05 20:26:41 +08:00
2017-03-03 14:42:00 +08:00
### Application Icons
2015-06-05 20:26:41 +08:00
2016-03-07 11:58:14 +08:00
```__react
2017-01-19 15:19:03 +08:00
import IconSet from 'site/theme/template/IconSet';
2016-09-18 09:54:47 +08:00
ReactDOM.render(< IconSet className = "icons" catigory = "other" / > , mountNode);
2016-03-07 11:58:14 +08:00
```
2017-03-03 14:42:00 +08:00
### Brand and Logos
```__react
import IconSet from 'site/theme/template/IconSet';
ReactDOM.render(< IconSet className = "icons" catigory = "logo" / > , mountNode);
```
2018-08-20 14:00:51 +08:00
2017-03-19 14:12:58 +08:00
## API
2016-10-08 15:09:56 +08:00
2018-08-20 14:00:51 +08:00
### Icon
| Property | Description | Type | Default |
| --- | --- | --- | --- |
| type | Type of ant design icon | string | - |
| style | Style properties of icon, like `fontSize` and `color` | CSSProperties | - |
| svgStyle | Inline style to apply to the SVG element | CSSProperties | - |
2018-08-20 17:23:28 +08:00
| svgClassName | Define extra class name for the SVG element | string | - |
2018-08-20 14:00:51 +08:00
| spin | Rotate icon with animation | boolean | false |
| component | The component used for the root node. This will override the ** `type` ** property. | ComponentType< CustomIconComponentProps \> | - |
All the icons will render to `<svg>` . You can still set `style` and `className` for size and color of icons.
```jsx
< Icon type = "message" style = {{ fontSize: ' 16px ' , color: ' # 08c ' } } / >
```
You can import svg icon as an react component by using `webpack` and [`@svgr/webpack` ](https://www.npmjs.com/package/@svgr/webpack ). `@svgr/webpack` 's `options` [reference ](https://github.com/smooth-code/svgr#options ).
```js
// webpack.config.js
{
test: /\.svg(\?v=\d+\.\d+\.\d+)?$/,
use: [
{
loader: 'babel-loader',
},
{
loader: '@svgr/webpack',
options: {
babel: false,
icon: true,
},
},
],
}
```
2017-04-06 20:52:32 +08:00
```jsx
2018-08-20 14:00:51 +08:00
import { Icon } from 'antd';
import MessageSvg from 'path/to/message.svg'; // path to your '*.svg' file.
ReactDOM.render(
< Icon component = {MessageSvg} / > ,
mountNode
);
2017-04-06 20:52:32 +08:00
```
2018-08-20 14:00:51 +08:00
#### CustomIconComponentProps
The following properties are available fot the component:
2017-10-25 10:25:44 +08:00
| Property | Description | Type | Default |
2018-08-20 14:00:51 +08:00
| --- | --- | --- | --- |
| width | The width of the `svg` element | string \| number | '1em' |
| height | The height of the `svg` element | string \| number | '1em' |
| fill | Define the color used to paint the `svg` element | string | 'currentColor' |
| className | The computed class name of the `svg` element | string | - |
| style | The computed style of the `svg` element | CSSProperties | - |
### Icon.createFromIconfontCN(options)
2018-08-20 17:23:28 +08:00
This method is specified for [iconfont.cn ](http://iconfont.cn/ ).
2018-08-20 14:00:51 +08:00
```js
const MyIcon = Icon.createFromIconfontCN({
namespace: 'foo', // identifier
url: 'at.alicdn.com/t/font_8d5l8fzk5b87iudi', // generated by iconfont.cn
prefix: 'icon-',
});
ReactDOM.render(< MyIcon type = "example" / > , mountedNode);
```
2018-08-20 17:23:28 +08:00
It create a component that uses SVG sprites in essence.
2018-08-20 14:00:51 +08:00
The following options are available:
| Property | Description | Type | Default |
| --- | --- | --- | --- |
2018-08-20 17:23:28 +08:00
| prefix | The prefix of the icon set. It ends with `-` generally, like `icon-` 、`foo-` | string | '' |
| extraCommonProps | Define extra properties to the component | `{ [key: string]: any }` | {} |
| namespace | The namespace of the icon set, used as identifier. | string | - |
| url | The URL generated by [iconfont.cn ](http://iconfont.cn/ ) project. | string | - |
2018-08-20 14:00:51 +08:00
2018-08-20 17:23:28 +08:00
The property `url` should be set together with property `namespace` .
2018-08-20 14:00:51 +08:00
2018-08-20 17:23:28 +08:00
See [iconfont.cn documents ](http://iconfont.cn/help/detail?spm=a313x.7781069.1998910419.15&helptype=code ) to learn about how to generate `url` .