@semcore/icon
Version:
Semrush Icon Component
24 lines • 1.36 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 = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Marine",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M8 0a2 2 0 0 0-1 3.732V6H6a1 1 0 1 0 0 2h1v5.936c-1.476-.212-2.17-.89-2.527-1.46A3.233 3.233 0 0 1 4 11.012V11v.007s0 .002-1 .002l-1 .001v.03a2.542 2.542 0 0 0 .014.23 5.228 5.228 0 0 0 .763 2.265C3.597 14.844 5.18 16 8 16s4.402-1.155 5.223-2.466a5.227 5.227 0 0 0 .775-2.439L14 11.04v-.03l-1-.001-1-.001V11v.012c-.001.015-.002.042-.006.08a3.233 3.233 0 0 1-.467 1.385c-.357.57-1.051 1.247-2.527 1.46V8h1a1 1 0 1 0 0-2H9V3.732A2 2 0 0 0 8 0Z",
shapeRendering: "geometricPrecision"
}));
}
Marine.displayName = 'Marine';
export default createBaseComponent(Marine);