react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 361 B
JavaScript
import React from 'react';
export default function GoogleAdwordsIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-google-adwords ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M2 22L8.5 2h6.9L9.2 20s-.6 2-2.2 2H2M16.4 5L13 15l2 5.7s.4 1.3 2 1.3h5L16.4 5z" />
</svg>
);
}