@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.38 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 DocumentDrop({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "DocumentDrop",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M9 2a1 1 0 0 0-1 1v13a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V6.52a1 1 0 0 0-.325-.737l-3.844-3.52A1 1 0 0 0 17.155 2H9Zm1 2h6v3a1 1 0 0 0 1 1h3v7H10V4Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M4 11V9h2V7H3a1 1 0 0 0-1 1v3h2Zm-2 2v3h2v-3H2Zm0 8v-3h2v2h2v2H3a1 1 0 0 1-1-1Zm13 1h-3v-2h2v-1h2v2a1 1 0 0 1-1 1Zm-7 0h2v-2H8v2Z",
shapeRendering: "geometricPrecision"
}));
}
DocumentDrop.displayName = 'DocumentDrop';
export default createBaseComponent(DocumentDrop);