react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 553 B
JavaScript
import React from 'react';
export default function AccountMinusOutlineIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-account-minus-outline ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M15 4a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4m0 1.9a2.1 2.1 0 1 1 0 4.2A2.1 2.1 0 0 1 12.9 8 2.1 2.1 0 0 1 15 5.9M1 10v2h8v-2H1m14 3c-2.67 0-8 1.33-8 4v3h16v-3c0-2.67-5.33-4-8-4m0 1.9c2.97 0 6.1 1.46 6.1 2.1v1.1H8.9V17c0-.64 3.1-2.1 6.1-2.1z" />
</svg>
);
}