@scaleflex/icons
Version:
SVG icons as React components
28 lines • 1.8 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 Like = function Like(_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": "Like",
ref: ref,
width: size,
height: size,
viewBox: "0 0 42 42",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
d: "M4.50688 18.2827C2.11454 18.2827 0.166626 20.3153 0.166626 22.8116V37.3045C0.166626 39.8008 2.11454 41.8334 4.50688 41.8334H9.71521C10.6927 41.8334 11.5919 41.4892 12.3194 40.9167V18.2827H4.50688Z",
fill: color
}), /*#__PURE__*/React.createElement("path", {
d: "M41.8333 25.0762C41.8333 23.9874 41.4201 22.9729 40.7031 22.2247C41.5139 21.299 41.927 20.058 41.8142 18.7664C41.611 16.4638 39.6232 14.6595 37.2864 14.6595H26.5625C27.0937 12.9765 27.9444 9.89137 27.9444 7.41311C27.9444 3.48375 24.7448 0.166748 22.736 0.166748C20.9323 0.166748 19.644 1.22653 19.5885 1.27001C19.3837 1.44214 19.2639 1.70301 19.2639 1.97832V8.12141L14.2639 19.424L14.0555 19.5345V38.9512C15.4687 39.6469 17.2569 40.0219 18.3958 40.0219H34.3316C36.2222 40.0219 37.8767 38.6921 38.2656 36.857C38.4652 35.9132 38.3489 34.9621 37.9514 34.136C39.2343 33.4621 40.0972 32.0834 40.0972 30.511C40.0972 29.8697 39.9566 29.2555 39.6892 28.6994C40.9722 28.0255 41.8333 26.6468 41.8333 25.0762Z",
fill: color
}));
};
export default Like;