Icon图标

语义化的矢量图形。使用图标组件,你需要安装 @ant-design/icons 图标组件包:

  1. npm install --save @ant-design/icons

设计师专属

安装 Kitchen Sketch 插件 💎,就可以一键拖拽使用 Ant Design 和 Iconfont 的海量图标,还可以关联自有项目。

图标列表

Icon图标 - 图1 线框风格 Icon图标 - 图2 实底风格 Icon图标 - 图3 双色风格

Icon图标 - 图4

Icon图标 - 图5

Icon图标 - 图6

方向性图标

Icon图标 - 图7

提示建议性图标

Icon图标 - 图8

编辑类图标

Icon图标 - 图9

数据类图标

Icon图标 - 图10

品牌和标识

Icon图标 - 图11

网站通用图标

Icon图标 - 图12

代码演示

Icon图标 - 图13

基本用法

通过 @ant-design/icons 引用 Icon 组件,不同主题的 Icon 组件名为图标名加主题做为后缀,也可以通过设置 spin 属性来实现动画旋转效果。

  1. import {
  2. HomeOutlined,
  3. SettingFilled,
  4. SmileOutlined,
  5. SyncOutlined,
  6. LoadingOutlined,
  7. } from '@ant-design/icons';
  8. ReactDOM.render(
  9. <div className="icons-list">
  10. <HomeOutlined />
  11. <SettingFilled />
  12. <SmileOutlined />
  13. <SyncOutlined spin />
  14. <SmileOutlined rotate={180} />
  15. <LoadingOutlined />
  16. </div>,
  17. mountNode,
  18. );

Icon图标 - 图14

自定义图标

利用 Icon 组件封装一个可复用的自定义图标。可以通过 component 属性传入一个组件来渲染最终的图标,以满足特定的需求。

  1. import Icon from '@ant-design/icons';
  2. const HeartSvg = () => (
  3. <svg width="1em" height="1em" fill="currentColor" viewBox="0 0 1024 1024">
  4. <path d="M923 283.6c-13.4-31.1-32.6-58.9-56.9-82.8-24.3-23.8-52.5-42.4-84-55.5-32.5-13.5-66.9-20.3-102.4-20.3-49.3 0-97.4 13.5-139.2 39-10 6.1-19.5 12.8-28.5 20.1-9-7.3-18.5-14-28.5-20.1-41.8-25.5-89.9-39-139.2-39-35.5 0-69.9 6.8-102.4 20.3-31.4 13-59.7 31.7-84 55.5-24.4 23.9-43.5 51.7-56.9 82.8-13.9 32.3-21 66.6-21 101.9 0 33.3 6.8 68 20.3 103.3 11.3 29.5 27.5 60.1 48.2 91 32.8 48.9 77.9 99.9 133.9 151.6 92.8 85.7 184.7 144.9 188.6 147.3l23.7 15.2c10.5 6.7 24 6.7 34.5 0l23.7-15.2c3.9-2.5 95.7-61.6 188.6-147.3 56-51.7 101.1-102.7 133.9-151.6 20.7-30.9 37-61.5 48.2-91 13.5-35.3 20.3-70 20.3-103.3 0.1-35.3-7-69.6-20.9-101.9z" />
  5. </svg>
  6. );
  7. const PandaSvg = () => (
  8. <svg viewBox="0 0 1024 1024" width="1em" height="1em" fill="currentColor">
  9. <path
  10. d="M99.096 315.634s-82.58-64.032-82.58-132.13c0-66.064 33.032-165.162 148.646-148.646 83.37 11.91 99.096 165.162 99.096 165.162l-165.162 115.614zM924.906 315.634s82.58-64.032 82.58-132.13c0-66.064-33.032-165.162-148.646-148.646-83.37 11.91-99.096 165.162-99.096 165.162l165.162 115.614z"
  11. fill="#6B676E"
  12. p-id="1143"
  13. />
  14. <path
  15. d="M1024 561.548c0 264.526-229.23 429.42-512.002 429.42S0 826.076 0 561.548 283.96 66.064 512.002 66.064 1024 297.022 1024 561.548z"
  16. fill="#FFEBD2"
  17. p-id="1144"
  18. />
  19. <path
  20. d="M330.324 842.126c0 82.096 81.34 148.646 181.678 148.646s181.678-66.55 181.678-148.646H330.324z"
  21. fill="#E9D7C3"
  22. p-id="1145"
  23. />
  24. <path
  25. d="M644.13 611.098C594.582 528.516 561.55 512 512.002 512c-49.548 0-82.58 16.516-132.13 99.096-42.488 70.814-78.73 211.264-49.548 247.742 66.064 82.58 165.162 33.032 181.678 33.032 16.516 0 115.614 49.548 181.678-33.032 29.18-36.476-7.064-176.93-49.55-247.74z"
  26. fill="#FFFFFF"
  27. p-id="1146"
  28. />
  29. <path
  30. d="M611.098 495.484c0-45.608 36.974-82.58 82.58-82.58 49.548 0 198.194 99.098 198.194 165.162s-79.934 144.904-148.646 99.096c-49.548-33.032-132.128-148.646-132.128-181.678zM412.904 495.484c0-45.608-36.974-82.58-82.58-82.58-49.548 0-198.194 99.098-198.194 165.162s79.934 144.904 148.646 99.096c49.548-33.032 132.128-148.646 132.128-181.678z"
  31. fill="#6B676E"
  32. p-id="1147"
  33. />
  34. <path
  35. d="M512.002 726.622c-30.06 0-115.614 5.668-115.614 33.032 0 49.638 105.484 85.24 115.614 82.58 10.128 2.66 115.614-32.944 115.614-82.58-0.002-27.366-85.556-33.032-115.614-33.032z"
  36. fill="#464655"
  37. p-id="1148"
  38. />
  39. <path
  40. d="M330.324 495.484m-33.032 0a33.032 33.032 0 1 0 66.064 0 33.032 33.032 0 1 0-66.064 0Z"
  41. fill="#464655"
  42. p-id="1149"
  43. />
  44. <path
  45. d="M693.678 495.484m-33.032 0a33.032 33.032 0 1 0 66.064 0 33.032 33.032 0 1 0-66.064 0Z"
  46. fill="#464655"
  47. p-id="1150"
  48. />
  49. </svg>
  50. );
  51. const HeartIcon = props => <Icon component={HeartSvg} {...props} />;
  52. const PandaIcon = props => <Icon component={PandaSvg} {...props} />;
  53. ReactDOM.render(
  54. <div className="custom-icons-list">
  55. <HeartIcon style={{ color: 'hotpink' }} />
  56. <PandaIcon style={{ fontSize: '32px' }} />
  57. </div>,
  58. mountNode,
  59. );
  1. .custom-icons-list > .anticon {
  2. margin-right: 6px;
  3. }
  4. .ant-row-rtl .custom-icons-list > .anticon {
  5. margin-right: 0;
  6. margin-left: 6px;
  7. }

Icon图标 - 图15

使用 iconfont.cn 的多个资源

@ant-design/icons@4.1.0 以后,scriptUrl 可引用多个资源,用户可灵活的管理 iconfont.cn 图标。如果资源的图标出现重名,会按照数组顺序进行覆盖。

  1. import { createFromIconfontCN } from '@ant-design/icons';
  2. const IconFont = createFromIconfontCN({
  3. scriptUrl: [
  4. '//at.alicdn.com/t/font_1788044_0dwu4guekcwr.js', // icon-javascript, icon-java, icon-shoppingcart (overrided)
  5. '//at.alicdn.com/t/font_1788592_a5xf2bdic3u.js', // icon-shoppingcart, icon-python
  6. ],
  7. });
  8. ReactDOM.render(
  9. <div className="icons-list">
  10. <IconFont type="icon-javascript" />
  11. <IconFont type="icon-java" />
  12. <IconFont type="icon-shoppingcart" />
  13. <IconFont type="icon-python" />
  14. </div>,
  15. mountNode,
  16. );

Icon图标 - 图16

多色图标

双色图标可以通过 twoToneColor 属性设置主题色。

  1. import { SmileTwoTone, HeartTwoTone, CheckCircleTwoTone } from '@ant-design/icons';
  2. ReactDOM.render(
  3. <div className="icons-list">
  4. <SmileTwoTone />
  5. <HeartTwoTone twoToneColor="#eb2f96" />
  6. <CheckCircleTwoTone twoToneColor="#52c41a" />
  7. </div>,
  8. mountNode,
  9. );

Icon图标 - 图17

使用 iconfont.cn

对于使用 iconfont.cn 的用户,通过设置 createFromIconfontCN 方法参数对象中的 scriptUrl 字段, 即可轻松地使用已有项目中的图标。

  1. import { createFromIconfontCN } from '@ant-design/icons';
  2. const IconFont = createFromIconfontCN({
  3. scriptUrl: '//at.alicdn.com/t/font_8d5l8fzk5b87iudi.js',
  4. });
  5. ReactDOM.render(
  6. <div className="icons-list">
  7. <IconFont type="icon-tuichu" />
  8. <IconFont type="icon-facebook" />
  9. <IconFont type="icon-twitter" />
  10. </div>,
  11. mountNode,
  12. );

API

从 4.0 开始,antd 不再内置 Icon 组件,请使用独立的包 @ant-design/icons

通用图标

参数说明类型默认值版本
className设置图标的样式名string-
rotate图标旋转角度(IE9 无效)number-
spin是否有旋转动画booleanfalse
style设置图标的样式,例如 fontSizecolorCSSProperties-
twoToneColor仅适用双色图标。设置双色图标的主要颜色string (十六进制颜色)-

其中我们提供了三种主题的图标,不同主题的 Icon 组件名为图标名加主题做为后缀。

  1. import { StarOutlined, StarFilled, StarTwoTone } from '@ant-design/icons';
  2. <StarOutlined />
  3. <StarFilled />
  4. <StarTwoTone twoToneColor="#eb2f96" />

自定义 Icon

参数说明类型默认值版本
component控制如何渲染图标,通常是一个渲染根标签为 <svg> 的 React 组件ComponentType<CustomIconComponentProps>-
rotate图标旋转角度(IE9 无效)number-
spin是否有旋转动画booleanfalse
style设置图标的样式,例如 fontSizecolorCSSProperties-

关于 SVG 图标

3.9.0 之后,我们使用了 SVG 图标替换了原先的 font 图标,从而带来了以下优势:

  • 完全离线化使用,不需要从 CDN 下载字体文件,图标不会因为网络问题呈现方块,也无需字体文件本地部署。

  • 在低端设备上 SVG 有更好的清晰度。

  • 支持多色图标。

  • 对于内建图标的更换可以提供更多 API,而不需要进行样式覆盖。

更多讨论可参考:#10353

所有的图标都会以 <svg> 标签渲染,可以使用 styleclassName 设置图标的大小和单色图标的颜色。例如:

  1. import { MessageOutlined } from '@ant-design/icons';
  2. <MessageOutlined style={{ fontSize: '16px', color: '#08c' }} />;

双色图标主色

对于双色图标,可以通过使用 getTwoToneColor()setTwoToneColor(colorString) 来全局设置图标主色。

  1. import { getTwoToneColor, setTwoToneColor } from '@ant-design/icons';
  2. setTwoToneColor('#eb2f96');
  3. getTwoToneColor(); // #eb2f96

自定义 font 图标

3.9.0 之后,我们提供了一个 createFromIconfontCN 方法,方便开发者调用在 iconfont.cn 上自行管理的图标。

  1. import { createFromIconfontCN } from '@ant-design/icons';
  2. const MyIcon = createFromIconfontCN({
  3. scriptUrl: '//at.alicdn.com/t/font_8d5l8fzk5b87iudi.js', // 在 iconfont.cn 上生成
  4. });
  5. ReactDOM.render(<MyIcon type="icon-example" />, mountedNode);

其本质上是创建了一个使用 <use> 标签来渲染图标的组件。

options 的配置项如下:

参数说明类型默认值版本
extraCommonProps给所有的 svg 图标 <Icon /> 组件设置额外的属性{ [key: string]: any }{}
scriptUrliconfont.cn 项目在线生成的 js 地址,@ant-design/icons@4.1.0 之后支持 string[] 类型string | string[]-

scriptUrl 都设置有效的情况下,组件在渲染前会自动引入 iconfont.cn 项目中的图标符号集,无需手动引入。

iconfont.cn 使用帮助 查看如何生成 js 地址。

自定义 SVG 图标

如果使用 webpack,可以通过配置 @svgr/webpack 来将 svg 图标作为 React 组件导入。@svgr/webpackoptions 选项请参阅 svgr 文档

  1. // webpack.config.js
  2. {
  3. test: /\.svg(\?v=\d+\.\d+\.\d+)?$/,
  4. use: [
  5. {
  6. loader: 'babel-loader',
  7. },
  8. {
  9. loader: '@svgr/webpack',
  10. options: {
  11. babel: false,
  12. icon: true,
  13. },
  14. },
  15. ],
  16. }
  1. import Icon from '@ant-design/icons';
  2. import MessageSvg from 'path/to/message.svg'; // path to your '*.svg' file.
  3. // in create-react-app:
  4. // import { ReactComponent as MessageSvg } from 'path/to/message.svg';
  5. ReactDOM.render(<Icon component={MessageSvg} />, mountNode);

Icon 中的 component 组件的接受的属性如下:

字段说明类型只读值版本
className计算后的 svg 类名string-
fillsvg 元素填充的颜色stringcurrentColor
heightsvg 元素高度string | number1em
style计算后的 svg 元素样式CSSProperties-
widthsvg 元素宽度string | number1em