@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 975 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Ruler = /*#__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: "M15.25 2c.97 0 1.75.78 1.75 1.75v16.5c0 .97-.78 1.75-1.75 1.75h-6.5C7.78 22 7 21.22 7 20.25V3.75C7 2.78 7.78 2 8.75 2h6.5zm-3 6H8.5v1.5h3.75a.75.75 0 0 0 0-1.5zm-1.92 3.25H8.5v1.5h1.83a.75.75 0 0 0 0-1.5zm1.92 3.25H8.5V16h3.75a.75.75 0 0 0 0-1.5zm-1.92 3H8.5V19h1.83a.75.75 0 0 0 0-1.5zm0-12.5H8.5v1.5h1.83a.75.75 0 0 0 0-1.5z"
}));
});
Ruler.displayName = 'Ruler';
export var RulerDimensions = {
height: 24,
width: 24
};