@scaleflex/icons
Version:
SVG icons as React components
27 lines • 1.62 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["color", "size", "ref"];
import React from 'react';
export var Ocr = function Ocr(_ref) {
var _ref$color = _ref.color,
color = _ref$color === void 0 ? 'currentColor' : _ref$color,
_ref$size = _ref.size,
size = _ref$size === void 0 ? 14 : _ref$size,
ref = _ref.ref,
rest = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/React.createElement("svg", _extends({
"data-icon-name": "Ocr",
ref: ref,
width: size,
height: size,
viewBox: "0 0 50 50",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
"fill-rule": "evenodd",
"clip-rule": "evenodd",
d: "M44.6859 4.53299C44.6859 3.91258 44.1845 3.40967 43.5663 3.40967H6.43375C5.81554 3.40967 5.31421 3.91258 5.31421 4.53299V14.1667C5.31421 14.7871 5.81554 15.29 6.43375 15.29H11.1424C11.7607 15.29 12.262 14.7871 12.262 14.1667V10.7787H20.1881V34.8398C20.1855 34.866 20.1841 34.8926 20.1841 34.9194V39.1571L17.5831 39.1767C17.015 39.1767 16.5543 39.6484 16.5543 40.2303V45.5379C16.5543 46.1198 17.015 46.5915 17.5831 46.5915H32.3446C32.9127 46.5915 33.3734 46.1198 33.3734 45.5379V40.2303C33.3734 39.6484 32.9127 39.1767 32.3446 39.1767H29.7995V35.108C29.8006 35.0882 29.8011 35.0683 29.8011 35.0483L29.8119 10.7787H37.7382V14.1667C37.7382 14.7871 38.2395 15.29 38.8577 15.29H43.5663C44.1845 15.29 44.6859 14.7871 44.6859 14.1667V4.53299Z",
fill: color
}));
};
export default Ocr;