@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 914 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var CalendarMultiple = /*#__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 32 32"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M6.5 2A4.5 4.5 0 0 0 2 6.5V7h24v-.5A4.5 4.5 0 0 0 21.5 2h-15ZM2 21.5V9h24v12.5a4.5 4.5 0 0 1-4.5 4.5h-15A4.5 4.5 0 0 1 2 21.5Zm26-12V5.76c1.2.8 2 2.18 2 3.74V22a8 8 0 0 1-8 8H9.5a4.5 4.5 0 0 1-3.74-2H22a6 6 0 0 0 6-6V9.5Z"
}));
});
CalendarMultiple.displayName = 'CalendarMultiple';
export var CalendarMultipleDimensions = {
height: 32,
width: 32
};