react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 459 B
JavaScript
import React from 'react';
export default function RefreshIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-refresh ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M17.65 6.35A7.958 7.958 0 0 0 12 4a8 8 0 0 0-8 8 8 8 0 0 0 8 8c3.73 0 6.84-2.55 7.73-6h-2.08A5.99 5.99 0 0 1 12 18a6 6 0 0 1-6-6 6 6 0 0 1 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z" />
</svg>
);
}