react-material-icon-svg
Version:
React material icon jsx version
14 lines (12 loc) • 583 B
JavaScript
import React from 'react';
export default function ShieldRefreshOutlineIcon(props) {
return (
<svg
viewBox="0 0 24 24"
{...props}
className={`rmi rmi-shield-refresh-outline ${props.className}`}
>
<path d="M12 21c-3.8-1-7-5.5-7-9.8V6.3l7-3.1 7 3.1v5.8c.7.1 1.3.3 1.9.6.1-.6.1-1.1.1-1.7V5l-9-4-9 4v6c0 5.5 3.8 10.7 9 12 .4-.1.7-.2 1-.3-.4-.5-.8-1.1-1-1.7m6-6.5c1.1 0 2.1.4 2.8 1.2l1.2-1.2v4h-4l1.8-1.8c-.5-.4-1.1-.7-1.8-.7-1.4 0-2.5 1.1-2.5 2.5S16.6 21 18 21c.8 0 1.5-.4 2-1h1.7c-.6 1.5-2 2.5-3.7 2.5-2.2 0-4-1.8-4-4s1.8-4 4-4z" />
</svg>
);
}