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.
4.5 KiB
4.5 KiB
category | subtitle | type | title | toc |
---|---|---|---|---|
Components | 图标 | General | Icon | false |
语义化的矢量图形。
图标的命名规范
我们为每个图标赋予了语义化的命名,命名规则如下:
- 实心和描线图标保持同名,用
-o
来区分,比如question-circle
(实心) 和question-circle-o
(描线); - 命名顺序:
[图标名]-[形状?]-[描线?]-[方向?]
。
?
为可选。
完整的图标设计规范请访问 图标规范。
图标列表
点击图标即可复制代码。
方向性图标
import IconSet from 'site/theme/template/IconSet';
ReactDOM.render(<IconSet className="icons" catigory="direction" />, mountNode);
提示建议性图标
import IconSet from 'site/theme/template/IconSet';
ReactDOM.render(<IconSet className="icons" catigory="suggestion" />, mountNode);
网站通用图标
import IconSet from 'site/theme/template/IconSet';
ReactDOM.render(<IconSet className="icons" catigory="other" />, mountNode);
品牌与标识
import IconSet from 'site/theme/template/IconSet';
ReactDOM.render(<IconSet className="icons" catigory="logo" />, mountNode);
API
Icon
参数 | 说明 | 类型 | 默认值 |
---|---|---|---|
type | 图标类型,遵循图标的命名规范 | string | - |
style | 设置图标的样式,例如 fontSize 和 color |
CSSProperties | - |
svgStyle | 设置图标本身<svg> 标签的样式 |
CSSProperties | - |
svgClassName | 为图标本身<svg> 标签设置额外的类名 |
string | - |
spin | 是否有旋转动画 | boolean | false |
component | 控制如何渲染图标,通常是一个渲染根标签为 <svg> 的 React 组件,会使 type 属性失效 |
ComponentType<CustomIconComponentProps> | - |
所有的图标都会以 <svg>
标签渲染,可以使用 style
和 className
设置图标的大小和单色图标的颜色。例如:
<Icon type="message" style={{ fontSize: '16px', color: '#08c' }} />
如果使用 webpack
,可以通过配置 @svgr/webpack 来将 svg
图标作为 React
组件导入。@svgr/webpack
的 options
选项请参阅 svgr文档。
// webpack.config.js
{
test: /\.svg(\?v=\d+\.\d+\.\d+)?$/,
use: [
{
loader: 'babel-loader',
},
{
loader: '@svgr/webpack',
options: {
babel: false,
icon: true,
},
},
],
}
import { Icon } from 'antd';
import MessageSvg from 'path/to/message.svg'; // path to your '*.svg' file.
ReactDOM.render(
<Icon component={MessageSvg} />,
mountNode
);
CustomIconComponentProps
Icon
中的 component
组件的属性如下:
字段 | 说明 | 类型 | 只读值 |
---|---|---|---|
width | svg 元素宽度 |
string | number | '1em' |
height | svg 元素高度 |
string | number | '1em' |
fill | svg 元素填充的颜色 |
string | 'currentColor' |
className | 计算后的 svg 类名 |
string | - |
style | 计算后的 svg 元素样式 |
CSSProperties | - |
Icon.createFromIconfontCN(options)
这个方法适用于 iconfont.cn
的用户
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);
其本质上是创建了一个使用 <use>
标签来渲染图标的组件。
options
的配置项如下:
参数 | 说明 | 类型 | 默认值 |
---|---|---|---|
prefix | 设置图标的前缀,通常以短横线结尾,如 icon- 、foo- |
string | '' |
extraCommonProps | 给所有的 svg 图标 <Icon /> 组件设置额外的属性 |
{ [key: string]: any } |
{} |
namespace | 图标集合的名字空间,在 url 也设置的情况下有效,用于区分已导入的图标符号集合 |
string | - |
url | iconfont.cn 项目在线生成的 js 地址,在 namespace 也设置的情况下有效 |
string | - |
在 namespace
和 url
都设置有效的情况下,组件在渲染前会自动引入 iconfont.cn 项目中的图标符号集,无需手动引入。
见 iconfont.cn 使用帮助 查看如何生成 js
地址。