@semcore/icon
Version:
Semrush Icon Component
24 lines • 1.25 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 DropText({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "DropText",
"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-2v2H8V2h3ZM7 8a1 1 0 0 1 1-1h8a1 1 0 1 1 0 2h-3v7a1 1 0 1 1-2 0V9H8a1 1 0 0 1-1-1Z",
shapeRendering: "geometricPrecision"
}));
}
DropText.displayName = 'DropText';
export default createBaseComponent(DropText);