react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 686 B
JavaScript
import * as React from 'react';
export function SvgLyft(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M2 8v11a3 3 0 003 3h2.063A3.486 3.486 0 016 19.5V8H2zm20.5 0a5.5 5.5 0 00-5.5 5.5V22a4 4 0 004-4h2v-4h-2v-.5a1.5 1.5 0 013 0V17a5 5 0 005 5h1v-4a2 2 0 01-2-2h2v-4h-2.213A5.499 5.499 0 0022.5 8zM7 12v7c0 1.65 1.35 3 3 3h.5c.709 0 1.367-.214 1.918-.576-.131.197-.28.382-.447.547C11.34 22.61 10.46 23 9.5 23c-.54 0-1.05-.12-1.5-.35v2.93c.61.27 1.29.42 2 .42h1c2.75 0 5-2.25 5-5v-9h-4v5.5c0 .275-.225.5-.5.5a.501.501 0 01-.5-.5V12H7z" })));
}
export default SvgLyft;