15 lines
535 B
JavaScript
15 lines
535 B
JavaScript
// GENERATE BY ./scripts/generate.ts
|
|
// DON NOT EDIT IT MANUALLY
|
|
import * as React from 'react';
|
|
import PoundCircleOutlinedSvg from "@ant-design/icons-svg/es/asn/PoundCircleOutlined";
|
|
import AntdIcon from '../components/AntdIcon';
|
|
|
|
var PoundCircleOutlined = function PoundCircleOutlined(props, ref) {
|
|
return React.createElement(AntdIcon, Object.assign({}, props, {
|
|
ref: ref,
|
|
icon: PoundCircleOutlinedSvg
|
|
}));
|
|
};
|
|
|
|
PoundCircleOutlined.displayName = 'PoundCircleOutlined';
|
|
export default React.forwardRef(PoundCircleOutlined); |