react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 598 B
JavaScript
import * as React from 'react';
export function SvgBathSolid(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M26 4c-2.21 0-4 1.79-4 4h-2v2h6V8h-2c0-1.191.809-2 2-2 1.191 0 2 .809 2 2v6H1v2h1.188l1.53 7.594v.031a3.062 3.062 0 002 2.219L5 28h2l.656-2h16.688L25 28h2l-.719-2.156c1.047-.32 1.86-1.16 2.094-2.219v-.031L29.813 16H31v-2h-1V8c0-2.21-1.79-4-4-4zM4.219 16h23.593l-1.406 7.219c-.117.433-.484.781-1 .781H6.688c-.536 0-.899-.355-1-.813z" })));
}
export default SvgBathSolid;