@scaleflex/icons
Version:
SVG icons as React components
28 lines • 2.09 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 Shine = function Shine(_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": "Shine",
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: "M21.4062 2.00723C23.0028 9.62494 28.9569 15.579 36.5744 17.1759C37.5096 17.3719 38.1794 18.1968 38.1796 19.1524C38.1796 20.1081 37.5096 20.9329 36.5743 21.1289C28.9567 22.7255 23.0026 28.6794 21.4057 36.297C21.2097 37.2323 20.3848 37.9022 19.4291 37.9022C18.4734 37.9022 17.6486 37.2322 17.4526 36.297C15.8558 28.6794 9.90204 22.7255 2.28458 21.1286C1.34921 20.9326 0.679321 20.1077 0.679321 19.152C0.679321 18.1964 1.34933 17.3715 2.28458 17.1755C9.90216 15.5788 15.8562 9.62494 17.453 2.00736C17.649 1.07211 18.4738 0.402222 19.4295 0.402222C20.3852 0.402222 21.21 1.07211 21.4062 2.00723Z",
fill: color
}), /*#__PURE__*/React.createElement("path", {
d: "M40.3575 29.8045C41.1666 33.6643 44.1835 36.6813 48.0434 37.4905C48.7876 37.6465 49.3206 38.3028 49.3206 39.0632C49.3206 39.8235 48.7875 40.4798 48.0433 40.6358C44.1835 41.4448 41.1666 44.4617 40.3573 48.3217C40.2013 49.066 39.545 49.5989 38.7846 49.5989C38.0242 49.5989 37.3679 49.0658 37.212 48.3217C36.4029 44.4617 33.386 41.4448 29.5261 40.6356C28.7819 40.4796 28.2489 39.8233 28.2489 39.063C28.2489 38.3026 28.782 37.6463 29.5261 37.4903C33.3861 36.6812 36.403 33.6643 37.2122 29.8044C37.3681 29.0601 38.0245 28.5272 38.7848 28.5272C39.5453 28.5272 40.2015 29.0603 40.3575 29.8045Z",
fill: color
}));
};
export default Shine;