react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 435 B
JavaScript
import React from 'react';
export default function KnifeMilitaryIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-knife-military ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M22 2l-4.61 1.75-6.93 6.93L14 14.22l6.92-6.93C22.43 5.78 22 2 22 2M8.33 10l-1.41 1.39 1.41 1.41-5.65 5.66L6.21 22l5.66-5.66 1.41 1.42 1.42-1.42L8.33 10z" />
</svg>
);
}