react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 497 B
JavaScript
import * as React from 'react';
export function SvgMugHotSolid(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M12 2v4h2V2zm4 1v3h2V3zM6 7v18c0 1.645 1.355 3 3 3h12c1.645 0 3-1.355 3-3v-5h2c1.645 0 3-1.355 3-3v-3c0-1.645-1.355-3-3-3h-2V7zm2 2h14v16c0 .555-.445 1-1 1H9c-.555 0-1-.445-1-1zm16 4h2c.555 0 1 .445 1 1v3c0 .555-.445 1-1 1h-2z" })));
}
export default SvgMugHotSolid;