react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 607 B
JavaScript
import * as React from 'react';
export function SvgCoffeeSolid(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M11 3v4h2V3zm4 1v3h2V4zM4.875 8L5 9.094l1.813 17.218c.16 1.52 1.472 2.688 3 2.688h9.374c1.528 0 2.84-1.168 3-2.688l.47-4.312H25c1.645 0 3-1.355 3-3v-3c0-1.645-1.355-3-3-3h-1.406L24 9.094 24.125 8zm2.25 2h14.75l-1.688 16.094c-.054.52-.48.906-1 .906H9.813c-.519 0-.945-.387-1-.906zm16.25 5H25c.566 0 1 .434 1 1v3c0 .566-.434 1-1 1h-2.156z" })));
}
export default SvgCoffeeSolid;