@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
25 lines • 1.12 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var BookCompass = /*#__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 24 24"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M11 10a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0z"
}), /*#__PURE__*/React.createElement("path", {
d: "M4 4.5A2.5 2.5 0 0 1 6.5 2H18a2.5 2.5 0 0 1 2.5 2.5v14.25c0 .41-.34.75-.75.75H5.5a1 1 0 0 0 1 1h13.25a.75.75 0 0 1 0 1.5H6.5A2.5 2.5 0 0 1 4 19.5v-15zm9 1.25a.75.75 0 0 0-1.5 0v1.6A2.75 2.75 0 0 0 10.35 12l-1.3 3.23a.75.75 0 0 0 1.4.56l1.23-3.09a2.76 2.76 0 0 0 1.14 0l1.23 3.09a.75.75 0 0 0 1.4-.56L14.15 12A2.74 2.74 0 0 0 13 7.35v-1.6z"
}));
});
BookCompass.displayName = 'BookCompass';
export var BookCompassDimensions = {
height: 24,
width: 24
};