@omtanke/react-material-icons
Version:
Google Fonts - Material Icons
20 lines (18 loc) • 619 B
JavaScript
const SvgLoginRound = (props) => {
return (
<svg
xmlns='http://www.w3.org/2000/svg'
height='1em'
viewBox='0 0 24 24'
width='1em'
className='svg-icon'
{...props}>
<g fill='none'>
<path d='M0 0h24v24H0z' />
<path d='M0 0h24v24H0z' />
</g>
<path d='M10.3 7.7a.984.984 0 000 1.4l1.9 1.9H3c-.55 0-1 .45-1 1s.45 1 1 1h9.2l-1.9 1.9a.984.984 0 000 1.4c.39.39 1.01.39 1.4 0l3.59-3.59a.996.996 0 000-1.41L11.7 7.7a.984.984 0 00-1.4 0zM20 19h-7c-.55 0-1 .45-1 1s.45 1 1 1h7c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-7c-.55 0-1 .45-1 1s.45 1 1 1h7v14z' />
</svg>
);
}
export default SvgLoginRound;