@scaleflex/icons
Version:
SVG icons as React components
28 lines • 2.88 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 Process = 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": "Process",
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.4353 14.2769L45.2751 13.6531C45.0092 12.794 44.6819 11.9759 44.2524 11.1782L46.891 7.23052L42.8002 3.1397L38.8525 5.77828C38.0548 5.34874 37.2367 5.02148 36.3776 4.75557L35.4265 0H29.6584L28.7175 4.73512C27.8585 5.00102 27.0403 5.32829 26.2426 5.75782L22.2949 3.11925L18.2041 7.21006L20.8427 11.1577C20.4132 11.9554 20.0859 12.7736 19.82 13.6326L15.0849 14.5735V20.3518L19.82 21.2927C20.0859 22.1518 20.4132 22.9699 20.8427 23.7676L18.2041 27.7153L22.2949 31.8061L26.2426 29.1675C27.0403 29.5971 27.8585 29.9243 28.7175 30.1902L29.6584 34.9253H35.4265L36.3674 30.1902C37.2264 29.9243 38.0446 29.5971 38.8423 29.1675L42.7899 31.8061L46.8808 27.7153L44.2422 23.7676C44.6717 22.9699 44.999 22.1518 45.2649 21.2927L50 20.3518V14.5735L48.4353 14.2769ZM32.5322 24.6472C28.5846 24.6472 25.3631 21.4359 25.3631 17.478C25.3631 13.5304 28.5744 10.3089 32.5322 10.3089C36.4799 10.3089 39.7014 13.5201 39.7014 17.478C39.7014 21.4256 36.4901 24.6472 32.5322 24.6472Z",
fill: color
}), /*#__PURE__*/React.createElement("path", {
d: "M20.6893 36.3571L18.7359 35.9685C18.5723 35.4367 18.3678 34.9253 18.1019 34.4344L19.7382 31.98L17.2019 29.4436L14.7474 31.08C14.2565 30.8141 13.7451 30.6095 13.2133 30.4459L12.6304 27.5107H9.0407L8.45776 30.4459C7.92596 30.6095 7.4146 30.8141 6.92371 31.08L4.46922 29.4436L1.93291 31.98L3.56924 34.4344C3.30333 34.9253 3.09879 35.4367 2.93516 35.9685L0 36.5514V40.1309L2.93516 40.7138C3.09879 41.2457 3.30333 41.757 3.56924 42.2479L1.93291 44.7024L4.46922 47.2387L6.92371 45.6024C7.4146 45.8683 7.92596 46.0728 8.45776 46.2364L9.0407 49.1716H12.6202L13.2031 46.2364C13.7349 46.0728 14.2463 45.8683 14.7372 45.6024L17.1917 47.2387L19.728 44.7024L18.0916 42.2479C18.3575 41.757 18.5621 41.2457 18.7257 40.7138L21.6609 40.1309V36.5514L20.6893 36.3571ZM10.8304 42.7899C8.37595 42.7899 6.3919 40.7957 6.3919 38.3514C6.3919 35.8969 8.38617 33.9129 10.8304 33.9129C13.2849 33.9129 15.269 35.9071 15.269 38.3514C15.2792 40.7957 13.2849 42.7899 10.8304 42.7899Z",
fill: color
}));
});
export default Process;