@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
25 lines • 1.1 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var CalendarMention = /*#__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 20 20"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M17 7v3.42A4.98 4.98 0 0 0 10 15c0 .71.15 1.39.42 2H5.5A2.5 2.5 0 0 1 3 14.5V7h14zM14.5 3A2.5 2.5 0 0 1 17 5.5V6H3v-.5A2.5 2.5 0 0 1 5.5 3h9z"
}), /*#__PURE__*/React.createElement("path", {
d: "M15 12a3 3 0 1 0 1.28 5.71.5.5 0 1 1 .44.9A4 4 0 1 1 19 15v.51a1.5 1.5 0 0 1-2.65.97A2 2 0 0 1 13 15a2 2 0 0 1 3.17-1.62.5.5 0 0 1 .83.37v1.75a.5.5 0 1 0 1 0V15a3 3 0 0 0-3-3zm-1 3a1 1 0 1 0 2 0 1 1 0 0 0-2 0z"
}));
});
CalendarMention.displayName = 'CalendarMention';
export var CalendarMentionDimensions = {
height: 20,
width: 20
};