diff options
Diffstat (limited to 'icons-react/icons-js/baby-carriage.js')
-rw-r--r-- | icons-react/icons-js/baby-carriage.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/icons-react/icons-js/baby-carriage.js b/icons-react/icons-js/baby-carriage.js new file mode 100644 index 00000000..7fb61700 --- /dev/null +++ b/icons-react/icons-js/baby-carriage.js @@ -0,0 +1,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;
\ No newline at end of file |