20 lines
1.2 KiB
JavaScript
20 lines
1.2 KiB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
// GENERATE BY ./scripts/generate.ts
|
|
// DON NOT EDIT IT MANUALLY
|
|
|
|
import * as React from 'react';
|
|
import ArrowLeftOutlinedSvg from "@ant-design/icons-svg/es/asn/ArrowLeftOutlined";
|
|
import AntdIcon from "../components/AntdIcon";
|
|
var ArrowLeftOutlined = function ArrowLeftOutlined(props, ref) {
|
|
return /*#__PURE__*/React.createElement(AntdIcon, _extends({}, props, {
|
|
ref: ref,
|
|
icon: ArrowLeftOutlinedSvg
|
|
}));
|
|
};
|
|
|
|
/** */
|
|
var RefIcon = /*#__PURE__*/React.forwardRef(ArrowLeftOutlined);
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
RefIcon.displayName = 'ArrowLeftOutlined';
|
|
}
|
|
export default RefIcon; |