react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 532 B
JavaScript
import React from 'react';
export default function RestartIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-restart ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M12 4c2.1 0 4.1.8 5.6 2.3 3.1 3.1 3.1 8.2 0 11.3-1.8 1.9-4.3 2.6-6.7 2.3l.5-2c1.7.2 3.5-.4 4.8-1.7 2.3-2.3 2.3-6.1 0-8.5C15.1 6.6 13.5 6 12 6v4.6l-5-5 5-5V4M6.3 17.6C3.7 15 3.3 11 5.1 7.9l1.5 1.5c-1.1 2.2-.7 5 1.2 6.8.5.5 1.1.9 1.8 1.2l-.6 2c-1-.4-1.9-1-2.7-1.8z" />
</svg>
);
}