@scaleflex/icons
Version:
SVG icons as React components
27 lines • 2.06 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["color", "size"];
import React from 'react';
import { intrinsicComponent } from './utils/functions';
export var Compress = intrinsicComponent(function (_ref, 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,
rest = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/React.createElement("svg", _extends({
"data-icon-name": "Compress",
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", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M16.6667 0.000610352C18.2008 0.000610352 19.4444 1.24428 19.4444 2.77839V16.6673C19.4444 18.2014 18.2008 19.4451 16.6667 19.4451H2.77778C1.24367 19.4451 0 18.2014 0 16.6673C0 15.1332 1.24367 13.8895 2.77778 13.8895H13.8889V2.77839C13.8889 1.24428 15.1326 0.000610352 16.6667 0.000610352ZM33.3333 0.000610352C34.8675 0.000610352 36.1111 1.24428 36.1111 2.77839V13.8895H47.2222C48.7564 13.8895 50 15.1332 50 16.6673C50 18.2014 48.7564 19.4451 47.2222 19.4451H33.3333C31.7992 19.4451 30.5556 18.2014 30.5556 16.6673V2.77839C30.5556 1.24428 31.7992 0.000610352 33.3333 0.000610352ZM0 33.3339C0 31.7998 1.24367 30.5562 2.77778 30.5562H16.6667C18.2008 30.5562 19.4444 31.7998 19.4444 33.3339V47.2228C19.4444 48.757 18.2008 50.0006 16.6667 50.0006C15.1326 50.0006 13.8889 48.757 13.8889 47.2228V36.1117H2.77778C1.24367 36.1117 0 34.8681 0 33.3339ZM30.5556 33.3339C30.5556 31.7998 31.7992 30.5562 33.3333 30.5562H47.2222C48.7564 30.5562 50 31.7998 50 33.3339C50 34.8681 48.7564 36.1117 47.2222 36.1117H36.1111V47.2228C36.1111 48.757 34.8675 50.0006 33.3333 50.0006C31.7992 50.0006 30.5556 48.757 30.5556 47.2228V33.3339Z",
fill: color
}));
});
export default Compress;