---
order: 1
title:
zh-CN: 自定义图标
en-US: Custom Icon
---
## zh-CN
利用 `Icon` 提供的 `` 组件封装一个可复用的自定义图标。可以进一步通过 `component` 属性传入一个组件来修饰 `` 标签,以满足特定的需求。
## en-US
Todo, Please replace me.
````jsx
import { Icon } from 'antd';
const CustomIcon = Icon.CustomIcon;
const StarIcon = (props) => {
return (
);
};
const CoolStarIcon = (props) => {
const component = (svgProps) => {
return (
);
};
return ;
};
ReactDOM.render(
,
mountNode
);
````