@semcore/icon
Version:
Semrush Icon Component
32 lines • 1.62 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 DocumentPdf({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "DocumentPdf",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M14 9h4v2h2V7.586a1 1 0 0 0-.293-.707l-4.586-4.586A1 1 0 0 0 14.414 2H5a1 1 0 0 0-1 1v18a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-1H6V4h7v4a1 1 0 0 0 1 1Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M22.5 13a.5.5 0 0 0 0-1h-3a.5.5 0 0 0-.5.5V18a1 1 0 1 0 2 0v-2h1.5a.5.5 0 0 0 0-1H21v-2h1.5Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M7.5 12a.5.5 0 0 0-.5.5V18a1 1 0 1 0 2 0v-2h1a2 2 0 1 0 0-4H7.5Zm2.5 3H9v-2h1v2Zm3 3.5a.5.5 0 0 0 .5.5H16a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2h-2.5a.5.5 0 0 0-.5.5v6Zm3.077-.5H15v-5h1l.077 5Z",
shapeRendering: "geometricPrecision"
}));
}
DocumentPdf.displayName = 'DocumentPdf';
export default createBaseComponent(DocumentPdf);