@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 821 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var DrinkCoffee = /*#__PURE__*/React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg"
};
return /*#__PURE__*/React.createElement(StyledIconBase, _extends({
iconAttrs: attrs,
iconVerticalAlign: "middle",
iconViewBox: "0 0 24 24"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M3.94 5C2.87 5 2 5.87 2 6.94V12a8 8 0 0 0 15.91 1.2h.74a3.35 3.35 0 0 0 0-6.7h-.7c-.2-.86-.97-1.5-1.9-1.5H3.96zM18 8h.65a1.85 1.85 0 1 1 0 3.7H18V8z"
}));
});
DrinkCoffee.displayName = 'DrinkCoffee';
export var DrinkCoffeeDimensions = {
height: 24,
width: 24
};