@semcore/icon
Version:
Semrush Icon Component
30 lines • 1.3 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 RootReport({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Report",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M7 7.019a1 1 0 0 0 0 2h10a1 1 0 1 0 0-2H7ZM7 11.019a1 1 0 0 0 0 2h10a1 1 0 1 0 0-2H7ZM6 16.019a1 1 0 0 1 1-1h5a1 1 0 0 1 0 2H7a1 1 0 0 1-1-1Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M3 2.019a1 1 0 0 0-1 1v18a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-18a1 1 0 0 0-1-1H3Zm1 2v16h16v-16H4Z",
clipRule: "evenodd",
shapeRendering: "geometricPrecision"
}));
}
RootReport.displayName = 'Report';
const Report = createBaseComponent(RootReport);
export { Report as default };