react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 419 B
JavaScript
import React from 'react';
export default function AccountAlertIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-account-alert ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M10 4a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4m0 10c4.42 0 8 1.79 8 4v2H2v-2c0-2.21 3.58-4 8-4m10-2V7h2v5h-2m0 4v-2h2v2h-2z" />
</svg>
);
}