Update pythonico.tsx

This commit is contained in:
Stefan Pejcic 2024-02-28 22:47:37 +01:00 committed by GitHub
parent f9d17a833e
commit b45201c5cb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,14 +2,13 @@ import * as React from "react";
import { SVGProps } from "react";
const SvgPythonico = (props: SVGProps<SVGSVGElement>) => (
<svg
width={24}
height={64}
viewBox="0 0 256 255"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
<svg
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">
@ -30,7 +29,6 @@ const SvgPythonico = (props: SVGProps<SVGSVGElement>) => (
fill="url(#b)"
/>
</svg>
);
export default svgPythonico;