@scaleflex/icons
Version:
SVG icons as React components
77 lines • 2.07 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 Metadata = 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": "Metadata",
ref: ref,
width: size,
height: size,
viewBox: "0 0 20 20",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("rect", {
x: "0.400024",
y: "2.14545",
width: "8.72727",
height: "2.61818",
rx: "1",
fill: color
}), /*#__PURE__*/React.createElement("rect", {
x: "0.400024",
y: "10.8727",
width: "8.72727",
height: "2.61818",
rx: "1",
fill: color
}), /*#__PURE__*/React.createElement("rect", {
x: "0.400024",
y: "15.2363",
width: "8.72727",
height: "2.61818",
rx: "1",
fill: color
}), /*#__PURE__*/React.createElement("rect", {
x: "0.400024",
y: "6.50909",
width: "8.72727",
height: "2.61818",
rx: "1",
fill: color
}), /*#__PURE__*/React.createElement("rect", {
x: "10.8728",
y: "2.14545",
width: "8.72727",
height: "2.61818",
rx: "1",
fill: color
}), /*#__PURE__*/React.createElement("rect", {
x: "10.8728",
y: "10.8727",
width: "8.72727",
height: "2.61818",
rx: "1",
fill: color
}), /*#__PURE__*/React.createElement("rect", {
x: "10.8728",
y: "15.2363",
width: "8.72727",
height: "2.61818",
rx: "1",
fill: color
}), /*#__PURE__*/React.createElement("rect", {
x: "10.8728",
y: "6.50909",
width: "8.72727",
height: "2.61818",
rx: "1",
fill: color
}));
});