styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
16 lines (15 loc) • 1.08 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var React = tslib_1.__importStar(require("react"));
var StyledIconBase_1 = require("../../StyledIconBase");
exports.Briefcase = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M18 7c0-1.654-1.346-3-3-3H9C7.346 4 6 5.346 6 7c-1.654 0-3 1.346-3 3v7c0 1.654 1.346 3 3 3h12c1.654 0 3-1.346 3-3v-7c0-1.654-1.346-3-3-3zM9 6h6c.551 0 1 .449 1 1H8c0-.551.449-1 1-1zm10 11c0 .551-.449 1-1 1H6c-.551 0-1-.449-1-1v-1h14v1zM5 15v-5c0-.551.449-1 1-1h12c.551 0 1 .449 1 1v5H5zm8-3h-2c-.55 0-1 .45-1 1s.45 1 1 1h2c.55 0 1-.45 1-1s-.45-1-1-1z", key: "k0" })));
});
exports.Briefcase.displayName = 'Briefcase';
exports.BriefcaseDimensions = { height: 24, width: 24 };
;