UNPKG

@jetbrains/logos

Version:

JetBrains logos and branding materials

20 lines (19 loc) 1.76 kB
import { useUniqueId } from "../react-unique-logos-ids.js"; import * as React from "react"; function KotlinTextLogo(props) { var _id = useUniqueId(); return ( React.createElement( 'svg', Object.assign({}, { viewBox: "0 0 92.1 20" }, props), React.createElement( 'radialGradient', { id: _id, cx: 18.307, cy: 1.534, r: 21.686, gradientUnits: "userSpaceOnUse" }, React.createElement( 'stop', { offset: 0.003, stopColor: "#e44857" }), React.createElement( 'stop', { offset: 0.469, stopColor: "#c711e1" }), React.createElement( 'stop', { offset: 1, stopColor: "#7f52ff" }) ), React.createElement( 'path', { fill: ("url(#" + _id + ")"), d: "M18.9 19.7H0V.8h18.9l-9.6 9.3z" }), React.createElement( 'path', { d: "M41.8.7H38l-8.2 8.8V.8h-3v18.9h3v-9.2l8.2 9.2h3.9l-8.7-9.8z" }), React.createElement( 'path', { d: "M52 6.4c-1.1-.6-2.3-.9-3.6-.9-1.4 0-2.6.3-3.7.9s-2 1.5-2.6 2.6-.9 2.4-.9 3.7c0 1.4.3 2.6.9 3.7s1.5 2 2.5 2.6c1.1.6 2.3.9 3.7.9s2.6-.3 3.7-.9 1.9-1.5 2.5-2.6.9-2.4.9-3.7c0-1.4-.3-2.6-.9-3.7S53.1 7.1 52 6.4zm-.2 8.7c-.3.7-.8 1.2-1.4 1.6s-1.3.6-2.1.6-1.5-.2-2.1-.6-1.1-.9-1.4-1.6-.5-1.5-.5-2.4.2-1.7.5-2.4.8-1.2 1.4-1.6 1.3-.6 2.1-.6 1.5.2 2.1.6 1.1.9 1.4 1.6.5 1.5.5 2.4c0 1-.1 1.8-.5 2.4zm9.8-12.7h-2.9v2.4c0 .4-.1.7-.3.8-.2.2-.5.3-.8.3h-1.4v2.5h2.5v7.5c0 .8.2 1.5.5 2.1s.8 1.1 1.3 1.4c.6.3 1.3.5 2.1.5h2.2v-2.6H63c-.4 0-.8-.2-1.1-.5s-.4-.7-.4-1.2V8.3h3.2V5.8h-3.2zM67.1 0h3v19.7h-3zm6.3 0h3v3.1h-3zm0 5.8h3v13.8h-3zm18.1 2.3c-.4-.8-1-1.5-1.8-1.9-.8-.5-1.7-.7-2.7-.7-1.1 0-2 .3-2.8.8-.7.4-1.2 1-1.6 1.7V5.9h-2.9v13.8h3V12c0-.8.1-1.4.4-2s.7-1 1.2-1.4 1.1-.5 1.8-.5c.6 0 1.2.1 1.6.4.5.3.8.6 1 1.1s.3 1.1.3 1.7v8.3h3V11c.2-1.1-.1-2.1-.5-2.9z" }) ) ); } export default KotlinTextLogo;