@scaleflex/icons
Version:
SVG icons as React components
28 lines • 1.91 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 ActionRequired = 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": "ActionRequired",
ref: ref,
width: size,
height: size,
viewBox: "0 0 36 50",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
d: "M14.001 0.000610352C7.63925 0.000610352 2.75797 5.74707 3.84897 12.0665C3.98706 12.8661 4.74733 13.3986 5.54155 13.2609C6.33882 13.1232 6.87364 12.3656 6.73593 11.5683C5.95583 7.04788 9.44284 2.9303 14.001 2.9303C18.5455 2.9303 22.039 7.02843 21.2695 11.5504C21.1337 12.348 21.6705 13.1045 22.4677 13.2403C23.2654 13.3765 24.0219 12.8394 24.1577 12.0417C25.2284 5.74783 20.3704 0.000610352 14.001 0.000610352Z",
fill: color
}), /*#__PURE__*/React.createElement("path", {
d: "M29.589 23.4999C28.4831 21.3301 25.8579 20.4947 23.7296 21.5468C22.7264 19.5784 20.4345 18.6674 18.3742 19.3827V10.4128C18.3742 8.02177 16.4527 6.02402 14.0903 5.95917C11.6149 5.88898 9.56377 7.87147 9.56377 10.3522V32.9188L7.84296 31.1167C6.19119 29.3875 3.42554 29.2658 1.67726 30.8463C-0.167524 32.5137 -0.259458 35.3529 1.43923 37.1374L11.3292 47.6862C12.7086 49.1568 14.656 50.0006 16.6725 50.0006H28.6006C32.6392 50.0006 35.9248 46.715 35.9248 42.6764V27.442C35.9248 24.1869 32.4912 22.0648 29.589 23.4999Z",
fill: color
}));
});
export default ActionRequired;