12 lines
785 B
JavaScript
12 lines
785 B
JavaScript
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}><desc>{"Download more icon variants from https://tabler-icons.io/i/baby-carriage"}</desc><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; |