react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 387 B
JavaScript
import React from 'react';
export default function SecurityIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-security ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M12 12h7c-.53 4.11-3.28 7.78-7 8.92V12H5V6.3l7-3.11M12 1L3 5v6c0 5.55 3.84 10.73 9 12 5.16-1.27 9-6.45 9-12V5l-9-4z" />
</svg>
);
}