Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | 6x | import { Icon, PropsOf } from "@chakra-ui/react";
import type { FunctionComponent } from "react";
export const PythonIcon: FunctionComponent<PropsOf<typeof Icon>> = (props) => {
return (
<Icon {...props} version="1.0" viewBox="0 0 110.421 109.846">
<defs>
<linearGradient id="a">
<stop offset="0" stopColor="#ffe052" />
<stop offset="1" stopColor="#ffc331" />
</linearGradient>
<linearGradient
gradientUnits="userSpaceOnUse"
id="d"
x1="89.137"
x2="147.777"
xlinkHref="#a"
y1="111.921"
y2="168.101"
/>
<linearGradient id="b">
<stop offset="0" stopColor="#387eb8" />
<stop offset="1" stopColor="#366994" />
</linearGradient>
<linearGradient
gradientUnits="userSpaceOnUse"
id="c"
x1="55.549"
x2="110.149"
xlinkHref="#b"
y1="77.07"
y2="131.853"
/>
</defs>
<g color="#000">
<path
d="M99.75 67.469c-28.032 0-26.281 12.156-26.281 12.156l.031 12.594h26.75V96H62.875s-17.938-2.034-17.938 26.25 15.657 27.281 15.657 27.281h9.343v-13.125s-.503-15.656 15.407-15.656h26.531s14.906.241 14.906-14.406V82.125s2.263-14.656-27.031-14.656zM85 75.938a4.808 4.808 0 014.813 4.812A4.808 4.808 0 0185 85.563a4.808 4.808 0 01-4.813-4.813A4.808 4.808 0 0185 75.937z"
fill="url(#c)"
overflow="visible"
style={{ marker: "none" }}
transform="translate(-44.938 -67.469)"
/>
<path
d="M100.546 177.315c28.032 0 26.281-12.156 26.281-12.156l-.03-12.594h-26.75v-3.781h37.374s17.938 2.034 17.938-26.25c0-28.285-15.657-27.282-15.657-27.282h-9.343v13.125s.503 15.657-15.407 15.657h-26.53s-14.907-.241-14.907 14.406v24.219s-2.263 14.656 27.031 14.656zm14.75-8.469a4.808 4.808 0 01-4.812-4.812 4.808 4.808 0 014.812-4.813 4.808 4.808 0 014.813 4.813 4.808 4.808 0 01-4.813 4.812z"
fill="url(#d)"
overflow="visible"
style={{ marker: "none" }}
transform="translate(-44.938 -67.469)"
/>
</g>
</Icon>
);
};
|