@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.5 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 Fish({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Fish",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M.23 6.36a1 1 0 0 1 1.41-.128l5.064 4.22c.311-.483.75-1.07 1.338-1.66C9.443 7.393 11.687 6 14.999 6c5.085 0 7.774 3.258 8.67 4.785a2.388 2.388 0 0 1 0 2.43C22.773 14.742 20.084 18 14.999 18c-3.312 0-5.556-1.391-6.957-2.793a10.027 10.027 0 0 1-1.338-1.66L1.64 17.768a1 1 0 1 1-1.28-1.536L5.437 12 .359 7.768A1 1 0 0 1 .23 6.36ZM8.11 12a8.002 8.002 0 0 0 1.346 1.793C10.555 14.89 12.311 16 15 16c4.072 0 6.217-2.565 6.94-3.797a.389.389 0 0 0 0-.406C21.216 10.565 19.07 8 14.999 8c-2.688 0-4.444 1.109-5.543 2.207A8.002 8.002 0 0 0 8.11 12Z",
shapeRendering: "geometricPrecision"
}));
}
Fish.displayName = 'Fish';
export default createBaseComponent(Fish);