styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
16 lines (15 loc) • 936 B
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.CoffeeAlt = 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: "M19 5h-1V4a1 1 0 00-1-1H5a1 1 0 00-1 1v9a4 4 0 004 4h6c1.858 0 3.411-1.279 3.858-3H19a3 3 0 003-3V8a3 3 0 00-3-3zm1 6a1 1 0 01-1 1h-1V7h1a1 1 0 011 1v3zm-2 8H3c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3h-2z", key: "k0" })));
});
exports.CoffeeAlt.displayName = 'CoffeeAlt';
exports.CoffeeAltDimensions = { height: 24, width: 24 };
;