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