react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 447 B
JavaScript
import React from 'react';
export default function RestoreIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-restore ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M13 3a9 9 0 0 0-9 9H1l3.89 3.89.07.14L9 12H6a7 7 0 0 1 7-7 7 7 0 0 1 7 7 7 7 0 0 1-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42A8.896 8.896 0 0 0 13 21a9 9 0 0 0 9-9 9 9 0 0 0-9-9z" />
</svg>
);
}