@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.44 kB
JavaScript
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '@semcore/icon';
function Like({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Like",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M7 4C4.783 4 3 5.78 3 7.958c0 2.854 1.464 5.638 3.437 7.875 1.867 2.117 4.055 3.593 5.563 4.118 1.508-.525 3.696-2.001 5.563-4.118C19.535 13.596 21 10.812 21 7.958 21 5.78 19.217 4 17 4c-3.692 0-2.964 3-5 3s-1.308-3-5-3Zm5 .663A6.008 6.008 0 0 0 7 2C3.694 2 1 4.66 1 7.958c0 3.522 1.786 6.758 3.938 9.198 2.141 2.428 4.795 4.236 6.787 4.806a1 1 0 0 0 .55 0c1.992-.57 4.646-2.378 6.787-4.806C21.215 14.716 23 11.48 23 7.958 23 4.66 20.306 2 17 2a6.008 6.008 0 0 0-5 2.663Z",
shapeRendering: "geometricPrecision"
}));
}
Like.displayName = 'Like';
export default createBaseComponent(Like);