react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 374 B
JavaScript
import * as React from 'react';
export function SvgCarBatterySolid(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M8 6v2h4V6zm12 0v2h4V6zM4 9v18h24V9zm2 2h20v14H6zm14 4v2h-2v2h2v2h2v-2h2v-2h-2v-2zM8 17v2h6v-2z" })));
}
export default SvgCarBatterySolid;