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