@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 999 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var ChatCursor = /*#__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: "M10 1a8 8 0 0 1 7.48 10.86L14.2 9.4A2 2 0 0 0 11 11v5.94a8.07 8.07 0 0 1-4.61-.8l-.12-.07-3.65.92a.5.5 0 0 1-.62-.45v-.08l.01-.08.92-3.64-.07-.12a7.95 7.95 0 0 1-.83-2.9l-.02-.37L2 9a8 8 0 0 1 8-8Zm3.6 9.2 8 6A1 1 0 0 1 21 18h-4.4a1 1 0 0 0-.88.53l-1.84 3.44c-.49.92-1.88.57-1.88-.47V11a1.05 1.05 0 0 1 .12-.47 1 1 0 0 1 1.48-.33Z"
}));
});
ChatCursor.displayName = 'ChatCursor';
export var ChatCursorDimensions = {
height: 24,
width: 24
};