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