You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123 lines
2.6 KiB

---
category: Components
type: Basic
title: Icon
toc: false
---
10 years ago
Meaningful vector graphics.
10 years ago
## Icons naming convention
8 years ago
We provide semantic name for every icon, and naming rules are as follows:
- 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:`[icon's name]-[shape, optional]-[Scanning line or not]-[direction, optional]`.
8 years ago
## How To Use
Use tag <Icon /> to create an icon and set its type in the type prop, for example:
```html
<Icon type="link" />
```
Finally, it will be rendered as follow:
10 years ago
```html
<i class="anticon anticon-${type}"></i>
10 years ago
```
## Local deployment of icons font
By default, icon components uses [iconfont.cn](http://iconfont.cn), publicly available repository of a huge set of icons. In case you need to use a locally deployed version of the icon font, you can refer to [this example](https://github.com/ant-design/antd-init/tree/master/examples/local-iconfont)。
## List of icons
10 years ago
> Click the icon and copy the code。
8 years ago
### Directional Icons
```__react
import IconSet from 'site/theme/template/IconSet';
ReactDOM.render(<IconSet className="icons" catigory="direction" />, mountNode);
```
8 years ago
### Suggested Icons
```__react
ReactDOM.render(<IconSet className="icons" catigory="suggestion" />, mountNode);
```
8 years ago
### Other Icons
```__react
ReactDOM.render(<IconSet className="icons" catigory="other" />, mountNode);
```
<style>
.markdown .icons {
width: 100%;
}
ul.anticons-list {
8 years ago
margin: 40px 0;
list-style: none;
overflow: hidden;
}
10 years ago
ul.anticons-list li {
float: left;
8 years ago
width: 16.66%;
text-align: center;
list-style: none;
cursor: pointer;
height: 100px;
8 years ago
color: #555;
transition: all 0.2s ease;
position: relative;
8 years ago
margin: 3px 0;
border-radius: 4px;
background-color: #fff;
overflow: hidden;
padding: 10px 0 0 0;
}
ul.anticons-list li:hover {
8 years ago
background-color: #eaf8fe;
}
ul.anticons-list li.copied:hover {
color: rgba(255,255,255,0.2);
}
ul.anticons-list li:after {
position: absolute;
8 years ago
top: 0;
left: 0;
height: 100%;
width: 100%;
content: "Copied!";
text-align: center;
line-height: 110px;
8 years ago
color: #2db7f5;
transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
opacity: 0;
}
ul.anticons-list li.copied:after {
opacity: 1;
8 years ago
top: -10px;
}
.anticon {
font-size: 24px;
margin: 12px 0 16px;
8 years ago
transition: all .3s;
}
ul.anticons-list li:hover .anticon {
transform: scale(1.4);
}
.anticon-class {
display: block;
text-align: center;
transform: scale(0.83);
font-family: Consolas;
white-space: nowrap;
}
</style>