@omtanke/react-material-icons
Version:
Google Fonts - Material Icons
18 lines (16 loc) • 449 B
JavaScript
const SvgSimCardAlertOutlined = (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='M18 2h-8L4.02 8 4 20c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 18H6V8.83L10.83 4H18v16z' />
<path d='M11 15h2v2h-2zM11 8h2v5h-2z' />
</svg>
);
}
export default SvgSimCardAlertOutlined;