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