@jetbrains/logos
Version:
JetBrains logos and branding materials
28 lines (27 loc) • 3.52 kB
JavaScript
import { useUniqueId } from "../react-unique-logos-ids.js";
import * as React from "react";
function JetbrainsSimpleLogo(props) {
var _id = useUniqueId();
return (
React.createElement( 'svg', Object.assign({}, { fill: "none", viewBox: "0 0 64 64" }, props),
React.createElement( 'defs', null,
React.createElement( 'linearGradient', {
id: _id, x1: 1, x2: 62.75, y1: 63, y2: 1.25, gradientUnits: "userSpaceOnUse" },
React.createElement( 'stop', { stopColor: "#FF9419" }),
React.createElement( 'stop', { offset: 0.43, stopColor: "#FF021D" }),
React.createElement( 'stop', { offset: 0.99, stopColor: "#E600FF" })
)
),
React.createElement( 'path', {
fill: ("url(#" + _id + ")"), d: "M22.14 0H59c2.76 0 5 2.24 5 5v36.86c0 2.65-1.055 5.195-2.93 7.07L48.93 61.07A10 10 0 0 1 41.86 64H5c-2.76 0-5-2.24-5-5V22.14c0-2.65 1.055-5.195 2.93-7.07L15.07 2.93A10 10 0 0 1 22.14 0" }),
React.createElement( 'path', { fill: "#000", d: "M52 12H6v46h46z" }),
React.createElement( 'g', { fill: "#fff", className: "jetbrains-simple_svg__letters-to-show-hovered" },
React.createElement( 'path', { d: "M11.92 21.49a.9.9 0 0 0 .1-.42V16h1.635v5.19c0 .43-.09.815-.275 1.145s-.45.585-.785.77q-.509.276-1.16.275H10v-1.505h1.22q.24-.001.42-.1a.54.54 0 0 0 .28-.285M10 51h16v3H10zm6.595-30.63h3.475v-1.38h-3.475v-1.565h3.835V16h-5.425v7.38h5.53v-1.42h-3.94zm6.725-2.905h-2.19V16h6v1.465h-2.18v5.915h-1.63z" }),
React.createElement( 'path', {
fillRule: "evenodd", d: "M14.935 29.295a2 2 0 0 0-.4-.16 1.6 1.6 0 0 0 .94-.71 1.64 1.64 0 0 0 .23-.87q.001-.562-.305-1.005a2 2 0 0 0-.86-.69q-.555-.249-1.26-.25H10v7.38h3.345c.495 0 .94-.085 1.325-.26q.584-.261.905-.725c.215-.31.32-.66.32-1.06q0-.546-.255-.98a1.75 1.75 0 0 0-.705-.67m-3.35-2.445h1.45c.2 0 .38.035.53.11a.8.8 0 0 1 .36.31q.129.201.13.47c.001.269-.045.35-.13.49s-.205.245-.36.32q-.231.114-.53.115h-1.45zm2.5 4.47a.9.9 0 0 1-.395.325q-.254.114-.59.115h-1.515v-1.895H13.1c.22 0 .41.04.585.12q.256.121.4.34.141.219.14.505c-.001.286-.045.35-.14.49m8.375-2.14c-.225.355-.54.635-.95.83l-.005-.005q-.119.054-.245.1l1.685 2.885H21.08l-1.495-2.69H18.52v2.69h-1.635v-7.38h3.23q.802-.001 1.41.29c.405.195.72.465.94.82s.33.75.33 1.22-.11.885-.335 1.24m-2.465-2.24h-1.47v2.045h1.47c.23 0 .425-.04.595-.125q.255-.121.39-.355c.09-.155.135-.34.135-.545q0-.307-.135-.54a.9.9 0 0 0-.39-.355 1.3 1.3 0 0 0-.595-.125m5.745-1.325-2.635 7.38h1.66l.52-1.63h2.735l.56 1.63h1.63l-2.7-7.38zm-.085 4.515.85-2.605.1-.475.1.475.905 2.605z", clipRule: "evenodd" }),
React.createElement( 'path', { d: "M30.95 25.615h1.685v7.38H30.95zm7.835 4.99-3.175-4.99h-1.59v7.38h1.49V28l3.16 4.995h1.61v-7.38h-1.495zm7.28-1.595q.429.306.67.77h-.005q.24.464.24 1.01-.001.668-.355 1.2c-.354.532-.565.63-.99.83s-.915.3-1.46.3q-.819-.001-1.45-.295a2.4 2.4 0 0 1-.995-.82 2.17 2.17 0 0 1-.37-1.22h1.635c0 .19.055.36.155.505q.149.216.425.335c.18.08.395.12.62.12s.425-.035.59-.105a.9.9 0 0 0 .39-.3q.141-.196.14-.445c0-.2-.065-.375-.19-.51s-.295-.23-.515-.285l-1.33-.275a2.4 2.4 0 0 1-.915-.395q-.391-.286-.61-.715a2.1 2.1 0 0 1-.215-.96q-.001-.659.335-1.175c.22-.345.535-.61.935-.805s.85-.29 1.37-.29q.78.001 1.38.28.607.279.945.775.339.495.355 1.14h-1.635q-.001-.239-.13-.425c-.129-.186-.205-.22-.36-.29s-.34-.105-.54-.105-.375.035-.53.1a.8.8 0 0 0-.355.275.7.7 0 0 0-.125.415q.001.261.175.44c.115.12.275.2.47.245l1.255.26q.555.106.99.415" })
)
)
);
}
export default JetbrainsSimpleLogo;