@scaleflex/icons
Version:
SVG icons as React components
25 lines • 2.41 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 Plan = function Plan(_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": "Plan",
ref: ref,
width: size,
height: size,
viewBox: "0 0 50 50",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
d: "M48.5351 2C44.7688 2 3.55663 2 1.46484 2C0.655858 2 0 2.65586 0 3.46484C0 4.27382 0.655858 4.92968 1.46484 4.92968H4.98046V45.6523C4.98046 46.143 5.22626 46.6012 5.63505 46.8726C6.04442 47.1444 6.56229 47.1925 7.01366 47.0024L15.7229 43.3355L24.4322 47.0024C24.7956 47.1554 25.2055 47.1554 25.5691 47.0024L34.2778 43.3355L42.9862 47.0024C43.4385 47.1928 43.9563 47.1441 44.365 46.8727C44.7738 46.6012 45.0195 46.1431 45.0195 45.6524V4.92968H48.5352C49.3441 4.92968 50 4.27382 50 3.46484C50 2.65586 49.344 2 48.5351 2ZM14.4531 32.7617C13.3744 32.7617 12.5 31.8872 12.5 30.8085C12.5 29.7298 13.3744 28.8554 14.4531 28.8554C15.5318 28.8554 16.4062 29.7298 16.4062 30.8085C16.4062 31.8872 15.5318 32.7617 14.4531 32.7617ZM14.4531 24.9492C13.3744 24.9492 12.5 24.0748 12.5 22.9961C12.5 21.9173 13.3744 21.0429 14.4531 21.0429C15.5318 21.0429 16.4062 21.9173 16.4062 22.9961C16.4062 24.0748 15.5318 24.9492 14.4531 24.9492ZM16.2109 11.2773C16.2109 10.4683 16.8668 9.81249 17.6757 9.81249H32.3242C33.1331 9.81249 33.789 10.4683 33.789 11.2773C33.789 12.0863 33.1331 12.7422 32.3242 12.7422H17.6757C16.8668 12.7422 16.2109 12.0863 16.2109 11.2773ZM35.7421 32.2734H22.0703C21.2613 32.2734 20.6054 31.6175 20.6054 30.8085C20.6054 29.9996 21.2613 29.3437 22.0703 29.3437H35.7421C36.5511 29.3437 37.207 29.9996 37.207 30.8085C37.207 31.6175 36.5511 32.2734 35.7421 32.2734ZM35.7421 24.4609H22.0703C21.2613 24.4609 20.6054 23.805 20.6054 22.9961C20.6054 22.1871 21.2613 21.5312 22.0703 21.5312H35.7421C36.5511 21.5312 37.207 22.1871 37.207 22.9961C37.207 23.805 36.5511 24.4609 35.7421 24.4609Z",
fill: color
}));
};
export default Plan;