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