UNPKG

styled-icons

Version:

Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components

14 lines (13 loc) 813 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var CoffeeAlt = React.forwardRef(function (props, ref) { var attrs = { "fill": "currentColor", "xmlns": "http://www.w3.org/2000/svg", }; return (React.createElement(StyledIconBase, __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" }))); }); CoffeeAlt.displayName = 'CoffeeAlt'; export var CoffeeAltDimensions = { height: 24, width: 24 };