status-web/packages/icons/src/kick-user-icon.tsx

26 lines
1.0 KiB
XML

import { createIcon } from '../lib/create-icon'
const SvgKickUserIcon = 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="M8.1 5a1.9 1.9 0 1 1 3.8 0 1.9 1.9 0 0 1-3.8 0ZM10 1.9a3.1 3.1 0 1 0 0 6.2 3.1 3.1 0 0 0 0-6.2Zm-5.39 15H9c.186.428.422.83.7 1.2H3.4v-.6c0-3.326.766-5.399 2.063-6.624C6.757 9.654 8.452 9.4 10 9.4c.405 0 .82.017 1.235.065-.484.315-.92.698-1.295 1.135-1.428.007-2.71.259-3.653 1.149-.891.841-1.59 2.363-1.678 5.151Zm5.99-2.4a3.9 3.9 0 1 1 7.8 0 3.9 3.9 0 0 1-7.8 0Zm3.9-5.1a5.1 5.1 0 1 0 0 10.2 5.1 5.1 0 0 0 0-10.2Zm.848 5.1 1.344 1.344-.848.848-1.344-1.344-1.344 1.344-.848-.848 1.344-1.344-1.344-1.344.848-.848 1.344 1.344 1.344-1.344.848.848-1.344 1.344Z"
clipRule="evenodd"
/>
</svg>
)
})
export default SvgKickUserIcon