@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 979 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var CalendarLtr = /*#__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: "M9 4a5 5 0 0 0-5 5v1h24V9a5 5 0 0 0-5-5H9zM4 23V12h24v11a5 5 0 0 1-5 5H9a5 5 0 0 1-5-5zm6.5-5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zm1.5 3.5a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0zm4 1.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zm1.5-6.5a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0zm4 1.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3z"
}));
});
CalendarLtr.displayName = 'CalendarLtr';
export var CalendarLtrDimensions = {
height: 32,
width: 32
};