@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.4 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 Marine({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Marine",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M15 4a3.001 3.001 0 0 1-2 2.83V10h2a1 1 0 1 1 0 2h-2v8.964c2.25-.17 3.815-.913 4.883-1.89 1.192-1.09 1.851-2.553 2.095-4.074h2.021l-.02.141c-.275 1.929-1.107 3.909-2.746 5.41C17.582 22.06 15.204 23 12 23H12c-3.204 0-5.582-.94-7.232-2.45-1.64-1.5-2.472-3.48-2.747-5.409L2 15h2.021c.244 1.521.903 2.984 2.096 4.075 1.067.976 2.63 1.719 4.881 1.889V12H9a1 1 0 1 1 0-2h2V6.83A3.001 3.001 0 1 1 15 4Zm-3 1a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z",
shapeRendering: "geometricPrecision"
}));
}
Marine.displayName = 'Marine';
export default createBaseComponent(Marine);