@scaleflex/icons
Version:
SVG icons as React components
45 lines • 1.51 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 CoverLayoutStandard = function CoverLayoutStandard(_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": "CoverLayoutStandard",
ref: ref,
width: size,
height: size,
viewBox: "0 0 68 48",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("rect", {
width: "68",
height: "48",
fill: "#F3F7FA"
}), /*#__PURE__*/React.createElement("rect", {
x: "0.5",
y: "0.5",
width: "67",
height: "47",
rx: "3.5",
stroke: color
}), /*#__PURE__*/React.createElement("path", {
d: "M0.5 4C0.5 2.067 2.067 0.5 4 0.5H44.84V47.5H4C2.06701 47.5 0.5 45.933 0.5 44V4Z",
fill: "#F3F7FA"
}), /*#__PURE__*/React.createElement("path", {
d: "M0.5 4C0.5 2.067 2.067 0.5 4 0.5H44.84V47.5H4C2.06701 47.5 0.5 45.933 0.5 44V4Z",
stroke: color
}), /*#__PURE__*/React.createElement("line", {
x1: "45",
y1: "23.5",
x2: "67",
y2: "23.5",
stroke: color
}));
};
export default CoverLayoutStandard;