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

function IconBabyCarriage({
  size = 24,
  color = "currentColor",
  stroke = 2,
  ...props
}) {
  return <svg xmlns="http://www.w3.org/2000/svg" className="icon icon-tabler icon-tabler-baby-carriage" 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" /><circle cx={8} cy={19} r={2} /><circle cx={18} cy={19} r={2} /><path d="M2 5h2.5l1.632 4.897a6 6 0 0 0 5.693 4.103h2.675a5.5 5.5 0 0 0 0 -11h-.5v6" /><path d="M6 9h14" /><path d="M9 17l1 -3" /><path d="M16 14l1 3" /></svg>;
}

export default IconBabyCarriage;