@semcore/icon
Version:
Semrush Icon Component
25 lines • 1.31 kB
JavaScript
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '../../lib/esm/index.mjs';
function RootDrop({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Drop",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M4 4v2H2V3a1 1 0 0 1 1-1h3v2H4Zm-2 7V8h2v3H2Zm0 2v3h2v-3H2Zm0 8v-3h2v2h2v2H3a1 1 0 0 1-1-1Zm6 1h3v-2H8v2Zm8 0h-3v-2h3v2Zm2 0h3a1 1 0 0 0 1-1v-3h-2v2h-2v2Zm4-9v3h-2v-3h2Zm-2-5v3h2V8h-2Zm2-2h-2V4h-2V2h3a1 1 0 0 1 1 1v3Zm-6-2V2h-3v2h3Zm-5-2v2H8V2h3Zm4.707 12.711a1 1 0 1 0-1.416-1.414l-1.288 1.275V7A1 1 0 0 0 11 7v7.572l-1.292-1.275a1.002 1.002 0 0 0-1.416 1.414l2.995 2.992c.391.39 1.025.39 1.416 0l3.003-2.992Z",
shapeRendering: "geometricPrecision"
}));
}
RootDrop.displayName = 'Drop';
const Drop = createBaseComponent(RootDrop);
export { Drop as default };