@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.64 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 Archive({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Archive",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M11 5.086A1 1 0 0 1 11 6.5L8.707 8.707a1 1 0 0 1-1.414 0L5.086 6.414A1 1 0 0 1 6.5 5l.5.586V1a1 1 0 0 1 2 0v4.586l.586-.5a1 1 0 0 1 1.414 0Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M6 10 4.293 8.293A1 1 0 0 0 3.586 8H2.22l.6-3H3a1 1 0 0 0 0-2h-.982a.993.993 0 0 0-.657.231.997.997 0 0 0-.345.592l-.992 4.96A.998.998 0 0 0 0 9.02V14a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V9.02a1.01 1.01 0 0 0-.024-.237l-.992-4.96a.994.994 0 0 0-.744-.794.993.993 0 0 0-.258-.029H13a1 1 0 1 0 0 2h.18l.6 3h-1.366a1 1 0 0 0-.707.293L10 10H6Zm0 2a2 2 0 0 1-1.414-.586L3.172 10H2v3h12v-3h-1.172l-1.414 1.414A2 2 0 0 1 10 12H6Z",
shapeRendering: "geometricPrecision"
}));
}
Archive.displayName = 'Archive';
export default createBaseComponent(Archive);