@nexusui/branding
Version:
This package contains branding elements for NexusUI applications, including logos for each unique product line. These icons work the same as basic SVG icons in React.
8 lines (5 loc) • 2.8 kB
JavaScript
import { jsxs, jsx } from 'react/jsx-runtime';
import { memo } from 'react';
const SvgExecutionManager = (props) => (jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", viewBox: "0 0 1024 1024", ...props, children: [jsxs("defs", { children: [jsxs("linearGradient", { id: "execution-manager_svg__a", x1: 403.78, x2: 567.86, y1: 654.53, y2: 741.77, gradientUnits: "userSpaceOnUse", children: [jsx("stop", { offset: 0, stopColor: "#97d9f5" }), jsx("stop", { offset: 1, stopColor: "#0d0d0d" })] }), jsx("linearGradient", { xlinkHref: "#execution-manager_svg__a", id: "execution-manager_svg__b", x1: 285.4, x2: 449.47, y1: 449.48, y2: 536.72 }), jsx("linearGradient", { xlinkHref: "#execution-manager_svg__a", id: "execution-manager_svg__c", x1: 167.01, x2: 331.09, y1: 244.44, y2: 331.68 }), jsx("linearGradient", { xlinkHref: "#execution-manager_svg__a", id: "execution-manager_svg__d", x1: 403.78, x2: 567.86, y1: 244.44, y2: 331.68 }), jsx("linearGradient", { xlinkHref: "#execution-manager_svg__a", id: "execution-manager_svg__e", x1: 640.55, x2: 804.63, y1: 244.44, y2: 331.68 }), jsx("linearGradient", { xlinkHref: "#execution-manager_svg__a", id: "execution-manager_svg__f", x1: 522.17, x2: 686.24, y1: 449.48, y2: 536.72 })] }), jsx("path", { fill: "#fff", d: "M0 320C0 143.27 143.27 0 320 0h384c176.73 0 320 143.27 320 320v384c0 176.73-143.27 320-320 320H320C143.27 1024 0 880.73 0 704V320Z", "data-name": "Background - White" }), jsx("path", { fill: "#97d9f5", d: "M0 320C0 143.27 143.27 0 320 0h384c176.73 0 320 143.27 320 320v384c0 176.73-143.27 320-320 320H320C143.27 1024 0 880.73 0 704V320Z", "data-name": "Background - Lv3" }), jsxs("g", { "data-name": "[Place Icon Here - Standard Icon]", children: [jsx("path", { fill: "#0d0d0d", d: "m406.77 648.91 210.46.01L512 831.18 406.77 648.91zM393.61 626.13h236.77l105.23-182.26H288.39l105.22 182.26zM275.23 421.08h473.54L854 238.82H170l105.23 182.26z" }), jsx("path", { fill: "url(#execution-manager_svg__a)", d: "m406.77 648.91 210.46.01L512 831.18 406.77 648.91z", opacity: 0.48 }), jsx("path", { fill: "url(#execution-manager_svg__b)", d: "M288.39 443.87h210.46L393.62 626.13 288.39 443.87z", opacity: 0.48 }), jsx("path", { fill: "url(#execution-manager_svg__c)", d: "M170 238.82h210.46L275.23 421.09 170 238.82z", opacity: 0.48 }), jsx("path", { fill: "url(#execution-manager_svg__d)", d: "M406.77 238.82h210.46L512 421.09 406.77 238.82z", opacity: 0.48 }), jsx("path", { fill: "url(#execution-manager_svg__e)", d: "M643.54 238.82H854L748.77 421.09 643.54 238.82z", opacity: 0.48 }), jsx("path", { fill: "url(#execution-manager_svg__f)", d: "M525.15 443.87h210.46L630.38 626.13 525.15 443.87z", opacity: 0.48 })] })] }));
const Memo = memo(SvgExecutionManager);
export { Memo as default };