UNPKG

@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) 1.48 kB
import { jsxs, jsx } from 'react/jsx-runtime'; import { memo } from 'react'; const SvgRobodyn = (props) => (jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 1024 1024", ...props, children: [jsx("defs", { children: jsxs("linearGradient", { id: "robodyn_svg__a", x1: 177.78, x2: 846.22, y1: 334.29, y2: 689.71, gradientUnits: "userSpaceOnUse", children: [jsx("stop", { offset: 0, stopColor: "#97d9f5" }), jsx("stop", { offset: 1, stopColor: "#0d0d0d" })] }) }), 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: "m310.8 719.47-169.1-97.63L331.94 512 141.7 402.16l169.11-97.63 190.68 109.58v195.78L310.8 719.47zM713.2 304.53l169.1 97.63L692.06 512 882.3 621.84l-169.11 97.63-190.68-109.58V414.11L713.2 304.53z" }), jsx("path", { fill: "url(#robodyn_svg__a)", d: "M331.94 512 141.7 402.16l169.11-97.63 190.68 109.59V609.9l-169.55-97.89Zm190.56-97.89v195.78l190.68 109.59 169.11-97.63-190.24-109.84-169.55-97.89Z", opacity: 0.48 })] })] })); const Memo = memo(SvgRobodyn); export { Memo as default };