mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-28 15:05:18 +08:00
19 lines
353 B
React
19 lines
353 B
React
|
|
import React, {PureComponent} from 'react';
|
||
|
|
|
||
|
|
export default class Icon extends PureComponent {
|
||
|
|
render() {
|
||
|
|
const {className, glyph, ...restProps} = this.props;
|
||
|
|
|
||
|
|
return (
|
||
|
|
<svg className={className} {...restProps}>
|
||
|
|
<use xlinkHref={`#${glyph}`} />
|
||
|
|
</svg>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
Icon.defaultProps = {
|
||
|
|
glyph: '',
|
||
|
|
className: 'icon'
|
||
|
|
};
|