@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 948 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var BookOpen = /*#__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: "M20 8c1.58 0 3 .66 4 1.73A5.48 5.48 0 0 1 28 8h13a3 3 0 0 1 3 3v26a3 3 0 0 1-3 3H28c-1.58 0-3-.66-4-1.73A5.48 5.48 0 0 1 20 40H7a3 3 0 0 1-3-3V11a3 3 0 0 1 3-3h13zm2.5 26.5v-21A2.5 2.5 0 0 0 20 11H7v26h13a2.5 2.5 0 0 0 2.5-2.5zm3-21v21A2.5 2.5 0 0 0 28 37h13V11H28a2.5 2.5 0 0 0-2.5 2.5z"
}));
});
BookOpen.displayName = 'BookOpen';
export var BookOpenDimensions = {
height: 48,
width: 48
};