react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 612 B
JavaScript
import React from 'react';
export default function CarWindshieldOutlineIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-car-windshield-outline ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M22.63 15.5l-2.42-9.65a1 1 0 0 0-1.07-.75c-1.34.14-5 .4-7.14.4s-5.8-.26-7.14-.4a1 1 0 0 0-1.07.75L1.37 15.5a1.5 1.5 0 0 0 1.18 1.86A61.5 61.5 0 0 0 12 18a61.5 61.5 0 0 0 9.45-.64 1.5 1.5 0 0 0 1.18-1.86M12 16a63.33 63.33 0 0 1-8.56-.5L5.5 7.18c1.5.14 4.66.32 6.5.32s5-.18 6.5-.32l2.06 8.32A63.33 63.33 0 0 1 12 16z" />
</svg>
);
}