react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 468 B
JavaScript
import React from 'react';
export default function TwoFactorAuthenticationIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-two-factor-authentication ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M2 7v2h4v2H4a2 2 0 0 0-2 2v4h6v-2H4v-2h2a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2H2m7 0v10h2v-4h3v-2h-3V9h4V7H9m9 0a2 2 0 0 0-2 2v8h2v-3h2v3h2V9a2 2 0 0 0-2-2h-2m0 2h2v3h-2V9z" />
</svg>
);
}