UNPKG

@jetbrains/logos

Version:

JetBrains logos and branding materials

23 lines (22 loc) 2.5 kB
import { useUniqueId } from "../react-unique-logos-ids.js"; import * as React from "react"; function ExposedLogo(props) { var _id = useUniqueId(); return ( React.createElement( 'svg', Object.assign({}, { fill: "none", viewBox: "0 0 50 48" }, props), React.createElement( 'defs', null, React.createElement( 'linearGradient', { id: _id, x1: 40.5, x2: 14.28, y1: 9.75, y2: 36.029, gradientUnits: "userSpaceOnUse" }, React.createElement( 'stop', { stopColor: "#EF4FFF" }), React.createElement( 'stop', { offset: 0.591, stopColor: "#C711E1" }), React.createElement( 'stop', { offset: 1, stopColor: "#7F52FF" }) ) ), React.createElement( 'path', { fill: ("url(#" + _id + ")"), d: "M45.265 31.202c.541-.83 1.69-3.09 2.212-4.11.07-.139.115-.279.148-.42 3.52-7.164 3.045-19.76-.885-23.63-3.985-3.926-17.02-4.015-24.143-.488-1.038.514-3.091 1.411-4.206 2.12-1.746 1.111-3.465 2.246-3.514 4.2-.039 1.544 2.194 3.685 1.82 4.618-.838 2.09-2.92.704-5.751 4.283-1.86 2.35.095 5.938-.25 6.531-1.782 3.072-5.37 1.664-7.685 2.91-1.677.902-2.592 2.551-2.97 3.396-.136.3.085.647.42.654.702.015 1.242-.333 3.091-.63 2.407-.386 3.95-1.394 4.65-.662.36.375-1.873 1.004-2.323 1.124-1.206.321-2.87.62-3.542 1.772a.53.53 0 0 0 .231.744c1.05.507 2.223 1.086 4.091.601 1.955-.508 3.268-1.907 4.284-1.02.654.572-5.764 2.445-5.306 3.765.324.935 3.708 1.736 6.295-.4.727-.6 1.464-1.328 1.685-.772.566 1.426-3.285 2.833-3.428 5.442-.006.12.083.224.197.265 3.724 1.354 4.93-3.564 5.69-3.288 2.144.78-3.009 3.574-2.133 6.784a.28.28 0 0 0 .29.2c.894-.07 1.848-.208 3.227-1.566 1.11-1.093 1.039-2.936 1.698-2.86.66.074-.352 2.266-1.117 3.877-.58 1.221-1.013 2.366-1.068 3.006-.02.23.217.405.439.335 3.52-1.107 4.578-3.23 4.78-3.902.652-2.164.629-4.344 2.715-5.668.627-.324 4.403 1.578 6.859-.136 3.425-2.39 2.728-4.899 4.35-5.662.948-.368 3.146 1.683 4.6 1.635 2.032-.067 3.426-1.327 4.55-3.05Z" }), React.createElement( 'path', { fill: "#000", d: "M26.397 29.337c1.491-.975 3.504-.574 4.494.895a3.163 3.163 0 0 1-.908 4.426c-1.492.975-3.505.574-4.495-.895a3.163 3.163 0 0 1 .909-4.425Zm-9.092-2.097c1.092-.655.53 1.258 1.85 2.774.028.033.147.15.18.178 1.54 1.299 3.483.746 2.816 1.822-.174.28-2.197 1.515-4.301-.537-2.085-2.073-.828-4.067-.545-4.237Zm-1.778-8.606c1.492-.975 3.505-.574 4.495.895a3.163 3.163 0 0 1-.909 4.426c-1.491.975-3.504.574-4.494-.895a3.163 3.163 0 0 1 .908-4.426Z" }) ) ); } export default ExposedLogo;