@scaleflex/icons
Version:
SVG icons as React components
52 lines • 1.47 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 FormPositionCenter = 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": "FormPositionCenter",
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: color,
fillOpacity: "0.18"
}), /*#__PURE__*/React.createElement("rect", {
x: "0.5",
y: "0.5",
width: "67",
height: "47",
rx: "3.5",
stroke: color
}), /*#__PURE__*/React.createElement("rect", {
x: "22.5",
y: "19",
width: "23",
height: "3",
rx: "0.5",
stroke: color
}), /*#__PURE__*/React.createElement("rect", {
x: "26.5",
y: "26",
width: "15",
height: "3",
rx: "0.5",
fill: color,
stroke: color
}));
});
export default FormPositionCenter;