aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/brand-python.js
blob: 9d1cc503b2be6215d807ab21163f2e587eedecaf (plain)
1
2
3
4
5
import * as React from "react";

const IconBrandPython = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-brand-python" 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="M12 9h-7a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h3" /><path d="M12 15h7a2 2 0 0 0 2 -2v-4a2 2 0 0 0 -2 -2h-3" /><path d="M8 9v-4a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v5a2 2 0 0 1 -2 2h-4a2 2 0 0 0 -2 2v5a2 2 0 0 0 2 2h4a2 2 0 0 0 2 -2v-4" /><line x1={11} y1={6} x2={11} y2={6.01} /><line x1={13} y1={18} x2={13} y2={18.01} /></svg>;

export default IconBrandPython;