@scaleflex/icons
Version:
SVG icons as React components
25 lines • 2.12 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 Workspace = function Workspace(_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": "Workspace",
ref: ref,
width: size,
height: size,
viewBox: "0 0 20 20",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
d: "M-1.39999 1.44988C-1.39999 1.19792 -1.2999 0.956286 -1.12175 0.778127C-0.943586 0.599967 -0.701949 0.499878 -0.449994 0.499878H20.45C20.702 0.499878 20.9436 0.599967 21.1218 0.778127C21.2999 0.956286 21.4 1.19792 21.4 1.44988C21.4 1.70183 21.2999 1.94347 21.1218 2.12163C20.9436 2.29979 20.702 2.39988 20.45 2.39988H-0.449994C-0.701949 2.39988 -0.943586 2.29979 -1.12175 2.12163C-1.2999 1.94347 -1.39999 1.70183 -1.39999 1.44988ZM-0.449994 19.4999H20.45C20.702 19.4999 20.9436 19.3998 21.1218 19.2216C21.2999 19.0435 21.4 18.8018 21.4 18.5499C21.4 18.2979 21.2999 18.0563 21.1218 17.8781C20.9436 17.7 20.702 17.5999 20.45 17.5999H-0.449994C-0.701949 17.5999 -0.943586 17.7 -1.12175 17.8781C-1.2999 18.0563 -1.39999 18.2979 -1.39999 18.5499C-1.39999 18.8018 -1.2999 19.0435 -1.12175 19.2216C-0.943586 19.3998 -0.701949 19.4999 -0.449994 19.4999ZM4.30001 15.6999H15.7C16.4556 15.699 17.18 15.3985 17.7143 14.8642C18.2486 14.3299 18.5492 13.6055 18.55 12.8499V7.14988C18.5492 6.39427 18.2486 5.66984 17.7143 5.13554C17.18 4.60124 16.4556 4.30071 15.7 4.29988H4.30001C3.54439 4.30071 2.81997 4.60124 2.28567 5.13554C1.75137 5.66984 1.45084 6.39427 1.45001 7.14988V12.8499C1.45084 13.6055 1.75137 14.3299 2.28567 14.8642C2.81997 15.3985 3.54439 15.699 4.30001 15.6999Z",
fill: color
}));
};
export default Workspace;