Create pythonico.tsx
This commit is contained in:
parent
e67b3c1955
commit
965afa55b7
1 changed files with 36 additions and 0 deletions
36
documentation/src/assets/integration-icons/pythonico.tsx
Normal file
36
documentation/src/assets/integration-icons/pythonico.tsx
Normal file
|
@ -0,0 +1,36 @@
|
|||
import * as React from "react";
|
||||
import { SVGProps } from "react";
|
||||
|
||||
const Svg = (props: SVGProps<SVGSVGElement>) => (
|
||||
|
||||
<svgPythonico
|
||||
width={24}
|
||||
height={64}
|
||||
viewBox="0 0 256 255"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
{...props}
|
||||
>
|
||||
<defs>
|
||||
<linearGradient x1="12.959%" y1="12.039%" x2="79.639%" y2="78.201%" id="a">
|
||||
<stop stop-color="#387EB8" offset="0%" />
|
||||
<stop stop-color="#366994" offset="100%" />
|
||||
</linearGradient>
|
||||
<linearGradient x1="19.128%" y1="20.579%" x2="90.742%" y2="88.429%" id="b">
|
||||
<stop stop-color="#FFE052" offset="0%" />
|
||||
<stop stop-color="#FFC331" offset="100%" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path
|
||||
d="M126.916.072c-64.832 0-60.784 28.115-60.784 28.115l.072 29.128h61.868v8.745H41.631S.145 61.355.145 126.77c0 65.417 36.21 63.097 36.21 63.097h21.61v-30.356s-1.165-36.21 35.632-36.21h61.362s34.475.557 34.475-33.319V33.97S194.67.072 126.916.072zM92.802 19.66a11.12 11.12 0 0 1 11.13 11.13 11.12 11.12 0 0 1-11.13 11.13 11.12 11.12 0 0 1-11.13-11.13 11.12 11.12 0 0 1 11.13-11.13z"
|
||||
fill="url(#a)"
|
||||
/>
|
||||
<path
|
||||
d="M128.757 254.126c64.832 0 60.784-28.115 60.784-28.115l-.072-29.127H127.6v-8.745h86.441s41.486 4.705 41.486-60.712c0-65.416-36.21-63.096-36.21-63.096h-21.61v30.355s1.165 36.21-35.632 36.21h-61.362s-34.475-.557-34.475 33.32v56.013s-5.235 33.897 62.518 33.897zm34.114-19.586a11.12 11.12 0 0 1-11.13-11.13 11.12 11.12 0 0 1 11.13-11.131 11.12 11.12 0 0 1 11.13 11.13 11.12 11.12 0 0 1-11.13 11.13z"
|
||||
fill="url(#b)"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
);
|
||||
|
||||
export default svgPythonico;
|
Loading…
Add table
Reference in a new issue