26 lines
952 B
XML
26 lines
952 B
XML
import { createIcon } from '../lib/create-icon'
|
|
|
|
const SvgBanUserIcon = createIcon(props => {
|
|
return (
|
|
<svg
|
|
{...props}
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width={props.width}
|
|
height={props.height}
|
|
fill="none"
|
|
viewBox="0 0 20 20"
|
|
focusable={false}
|
|
aria-hidden={true}
|
|
>
|
|
<path
|
|
fill={props.color}
|
|
fillRule="evenodd"
|
|
d="M10 3.1a1.9 1.9 0 1 0 0 3.8 1.9 1.9 0 0 0 0-3.8ZM6.9 5a3.1 3.1 0 1 1 6.2 0 3.1 3.1 0 0 1-6.2 0ZM9 16.9H4.61c.086-2.788.786-4.31 1.677-5.151.942-.89 2.225-1.142 3.653-1.149.375-.437.81-.82 1.295-1.135-.415-.048-.83-.065-1.235-.065-1.548 0-3.243.254-4.537 1.476C4.166 12.101 3.4 14.174 3.4 17.5v.6h6.3a5.99 5.99 0 0 1-.7-1.2Zm2.35-4.7a3.9 3.9 0 0 0 5.45 5.45l-5.45-5.45Zm.85-.85 5.45 5.45a3.9 3.9 0 0 0-5.45-5.45ZM9.4 14.5a5.1 5.1 0 1 1 10.2 0 5.1 5.1 0 0 1-10.2 0Z"
|
|
clipRule="evenodd"
|
|
/>
|
|
</svg>
|
|
)
|
|
})
|
|
|
|
export default SvgBanUserIcon
|