@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 875 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var ChatWarning = /*#__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 24 24"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M22 12a10 10 0 1 0-18.86 4.65l-1.11 4.29a.85.85 0 0 0 1.04 1.03l4.29-1.11A10 10 0 0 0 22 12zM12 6.5c.41 0 .75.34.75.75v6.25a.75.75 0 0 1-1.5 0V7.25c0-.41.34-.75.75-.75zm1 10a1 1 0 1 1-2 0 1 1 0 0 1 2 0z"
}));
});
ChatWarning.displayName = 'ChatWarning';
export var ChatWarningDimensions = {
height: 24,
width: 24
};