@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.45 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 = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Fish",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M.295 4.293a1 1 0 0 1 1.414 0l2.096 2.095c.16-.2.353-.412.581-.623C5.386 4.841 7.006 4 9.502 4c4.072 0 5.787 2.226 6.31 3.238.248.48.248 1.044 0 1.524C15.289 9.774 13.574 12 9.502 12c-2.497 0-4.115-.841-5.116-1.765a5.672 5.672 0 0 1-.581-.623l-2.096 2.095a1 1 0 0 1-1.414-1.414L2.588 8 .295 5.707a1 1 0 0 1 0-1.414ZM5.113 8c.125.207.325.484.63.765C6.367 9.341 7.498 10 9.502 10c2.883 0 4.074-1.372 4.45-2-.376-.628-1.567-2-4.45-2-2.004 0-3.135.659-3.76 1.235-.303.28-.504.558-.629.765Z",
shapeRendering: "geometricPrecision"
}));
}
Fish.displayName = 'Fish';
export default createBaseComponent(Fish);