react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 449 B
JavaScript
import * as React from 'react';
export function SvgRoadSolid(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M5.469 6l-.188.75-4.656 18L.281 26H31.72l-.344-1.25-4.656-18L26.53 6zM7.03 8h8.094l-.063 3h1.876l-.063-3h8.094l4.156 16H17.281l-.093-4h-2.375l-.094 4H2.875zM15 13l-.125 5h2.25L17 13z" })));
}
export default SvgRoadSolid;