@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.23 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 Briefcase({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Briefcase",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M7 4a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2h4a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1h4V4Zm8 0v2H9V4h6ZM4 8v4h5v-1a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v1h5V8H4Zm11 6v1a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1v-1H4v5h16v-5h-5Zm-4 0v-2h2v2h-2Z",
shapeRendering: "geometricPrecision"
}));
}
Briefcase.displayName = 'Briefcase';
export default createBaseComponent(Briefcase);