@omtanke/react-material-icons
Version:
Google Fonts - Material Icons
17 lines (15 loc) • 470 B
JavaScript
const SvgShieldRound = (props) => {
return (
<svg
xmlns='http://www.w3.org/2000/svg'
height='1em'
viewBox='0 0 24 24'
width='1em'
className='svg-icon'
{...props}>
<path fill='none' d='M0 0h24v24H0z' />
<path d='M11.3 2.26l-6 2.25C4.52 4.81 4 5.55 4 6.39v4.7c0 4.83 3.13 9.37 7.43 10.75.37.12.77.12 1.14 0 4.3-1.38 7.43-5.91 7.43-10.75v-4.7a2 2 0 00-1.3-1.87l-6-2.25c-.45-.18-.95-.18-1.4-.01z' />
</svg>
);
}
export default SvgShieldRound;