@scaleflex/icons
Version:
SVG icons as React components
37 lines • 1.18 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 CoverLayoutCustom = 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": "CoverLayoutCustom",
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", {
x: "0.5",
y: "0.5",
width: "67",
height: "47",
rx: "3.5",
fill: "url(#paint0_linear_1_2)",
fillOpacity: "0.18"
}), /*#__PURE__*/React.createElement("rect", {
x: "0.5",
y: "0.5",
width: "67",
height: "47",
rx: "3.5",
stroke: color
}));
});
export default CoverLayoutCustom;