react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 446 B
JavaScript
import React from 'react';
export default function ScrewdriverIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-screwdriver ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M18 1.83c-.5 0-1 .17-1.41.58L8 11l1.5 1.5L6 16H4l-2 4 2 2 4-2v-2l3.5-3.5L13 16l8.59-8.59c.62-.91.78-2.04 0-2.82l-2.18-2.18A1.95 1.95 0 0 0 18 1.83M18 4l2 2-7 7-2-2 7-7z" />
</svg>
);
}