UNPKG

@jetbrains/logos

Version:

JetBrains logos and branding materials

23 lines (22 loc) 2.29 kB
import { useUniqueId } from "../react-unique-logos-ids.js"; import * as React from "react"; function PycharmCeLogo(props) { var _id = useUniqueId(); return ( React.createElement( 'svg', Object.assign({}, { fill: "none", viewBox: "0 0 64 65" }, props), React.createElement( 'defs', null, React.createElement( 'radialGradient', { id: _id, cx: 0, cy: 0, r: 1, gradientTransform: "translate(61.722 1.759) scale(84.0131)", gradientUnits: "userSpaceOnUse" }, React.createElement( 'stop', { offset: 0.03, stopColor: "#F0EB18" }), React.createElement( 'stop', { offset: 0.71, stopColor: "#00C4F4" }) ) ), React.createElement( 'path', { fill: ("url(#" + _id + ")"), d: "M59.875.063H25.709a4.125 4.125 0 0 0-2.917 1.208L1.208 22.854A4.124 4.124 0 0 0 0 25.771v34.166a4.125 4.125 0 0 0 4.125 4.126h34.166a4.124 4.124 0 0 0 2.917-1.209l21.583-21.583a4.123 4.123 0 0 0 1.208-2.917L64 4.188A4.125 4.125 0 0 0 59.875.063Z" }), React.createElement( 'path', { fill: "#000", d: "M52 12.063H12v40h40v-40Z" }), React.createElement( 'path', { fill: "#fff", d: "M33 44.063H17v3h16v-3ZM17 17.055h6.442c1.058 0 1.985.193 2.782.578.797.386 1.411.93 1.844 1.63.432.7.648 1.511.648 2.433 0 .922-.22 1.758-.66 2.466s-1.062 1.255-1.87 1.645c-.807.39-1.75.585-2.83.585h-3.43v5.67H17V17.055Zm7.541 6.63c.368-.183.652-.444.852-.783.2-.34.3-.738.3-1.195s-.1-.842-.3-1.174c-.2-.333-.484-.59-.852-.772-.368-.183-.799-.273-1.292-.273h-3.322v4.47h3.322c.494 0 .924-.091 1.292-.273Zm8.967 7.62a7.286 7.286 0 0 1-2.744-2.787c-.664-1.182-.996-2.502-.996-3.96s.332-2.779.997-3.961a7.29 7.29 0 0 1 2.743-2.787c1.165-.675 2.466-1.013 3.902-1.013 1.215 0 2.33.225 3.345.675a6.863 6.863 0 0 1 2.534 1.892 6.443 6.443 0 0 1 1.356 2.792H41.58a4.056 4.056 0 0 0-.895-1.431 4.04 4.04 0 0 0-1.432-.949 4.896 4.896 0 0 0-1.822-.332c-.886 0-1.686.221-2.401.664a4.61 4.61 0 0 0-1.678 1.828c-.404.775-.606 1.648-.606 2.62 0 .972.202 1.846.606 2.62a4.605 4.605 0 0 0 1.678 1.828c.714.444 1.515.665 2.4.665.658 0 1.266-.11 1.823-.333a4.024 4.024 0 0 0 2.327-2.38h3.065a6.443 6.443 0 0 1-1.355 2.793 6.864 6.864 0 0 1-2.535 1.892c-1.015.45-2.13.675-3.345.675-1.436 0-2.737-.338-3.902-1.013v.002Z" }) ) ); } export default PycharmCeLogo;