react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 498 B
JavaScript
import React from 'react';
export default function ShieldKeyIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-shield-key ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M12 8a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1m9 3c0 5.55-3.84 10.74-9 12-5.16-1.26-9-6.45-9-12V5l9-4 9 4v6m-9-5a3 3 0 0 0-3 3c0 1.31.83 2.42 2 2.83V18h2v-2h2v-2h-2v-2.17c1.17-.41 2-1.52 2-2.83a3 3 0 0 0-3-3z" />
</svg>
);
}