@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 834 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var ChatEmpty = /*#__PURE__*/React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg"
};
return /*#__PURE__*/React.createElement(StyledIconBase, _extends({
iconAttrs: attrs,
iconVerticalAlign: "middle",
iconViewBox: "0 0 48 48"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M41.6 33.6c9.27-16.7-7.79-35.06-25.07-28.14-11.8 4.73-15.36 18.6-10.1 27.98-.7 2.31-1.9 6.57-2.4 8.37a1.75 1.75 0 0 0 2.16 2.16l8.48-2.43c12.21 5.79 22.7-.33 26.91-7.92Z"
}));
});
ChatEmpty.displayName = 'ChatEmpty';
export var ChatEmptyDimensions = {
height: 48,
width: 48
};