aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/poo.js
blob: 5b225856befe855393ea0a6bedcf85b85e1a322e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import * as React from "react";

function IconPoo({
  size = 24,
  color = "currentColor",
  stroke = 2,
  ...props
}) {
  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-poo" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><path d="M10 12h.01" /><path d="M14 12h.01" /><path d="M10 16a3.5 3.5 0 0 0 4 0" /><path d="M11 4c2 0 3.5 1.5 3.5 4l.164 .005a2.5 2.5 0 0 1 2.196 3.32a3 3 0 0 1 1.615 3.063a3 3 0 0 1 -1.299 5.607l-.176 .005h-10a3 3 0 0 1 -1.474 -5.613a3 3 0 0 1 1.615 -3.062a2.5 2.5 0 0 1 2.195 -3.32l.164 -.005c1.5 0 2.5 -2 1.5 -4z" /></svg>;
}

export default IconPoo;