styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 790 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Coffee = 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: "M17 19H5a1 1 0 110-2h12a1 1 0 110 2zm.5-14H5v9c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2v-2h.5c1.93 0 3.5-1.57 3.5-3.5S19.43 5 17.5 5zM15 14H7V7h8v7zm2.5-4H16V7h1.5c.827 0 1.5.673 1.5 1.5s-.673 1.5-1.5 1.5z", key: "k0" })));
});
Coffee.displayName = 'Coffee';
export var CoffeeDimensions = { height: 24, width: 24 };