@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 CalendarLock = /*#__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 48 48"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M6 12.25C6 8.8 8.8 6 12.25 6h23.5C39.2 6 42 8.8 42 12.25V14H6v-1.75Zm0 4.25v19.25C6 39.2 8.8 42 12.25 42H26v-9a5 5 0 0 1 4.06-4.91A7 7 0 0 1 42 24.1v-7.6H6ZM32 30h-1a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3V33a3 3 0 0 0-3-3h-1v-1a5 5 0 0 0-10 0v1Zm2.5-1a2.5 2.5 0 0 1 5 0v1h-5v-1Zm5.5 9a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"
}));
});
CalendarLock.displayName = 'CalendarLock';
export var CalendarLockDimensions = {
height: 48,
width: 48
};