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