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) 2.26 kB
import { jsxs, jsx } from 'react/jsx-runtime'; import { memo } from 'react'; const SvgMoveInspectPilot = (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: "move-inspect-pilot_svg__a", x1: 181.05, x2: 364.51, y1: 437.36, y2: 534.91, gradientUnits: "userSpaceOnUse", children: [jsx("stop", { offset: 0, stopColor: "#97d9f5" }), jsx("stop", { offset: 1 })] }), jsx("linearGradient", { xlinkHref: "#move-inspect-pilot_svg__a", id: "move-inspect-pilot_svg__b", x1: 361.1, x2: 544.56, y1: 333.41, y2: 430.96 }), jsx("linearGradient", { xlinkHref: "#move-inspect-pilot_svg__a", id: "move-inspect-pilot_svg__c", x1: 361.1, x2: 544.56, y1: 541.32, y2: 638.86 }), jsx("linearGradient", { xlinkHref: "#move-inspect-pilot_svg__a", id: "move-inspect-pilot_svg__d", x1: 1901.94, x2: 1535.03, y1: 1659.55, y2: 1464.46, gradientTransform: "rotate(-180 1169.145 1062.865)" })] }), 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: "M501.47 304.09v415.82L141.36 512l360.11-207.91z" }), jsx("path", { fill: "url(#move-inspect-pilot_svg__a)", d: "M321.42 408.05v207.9L141.36 512l180.06-103.95z", opacity: 0.48 }), jsx("path", { fill: "url(#move-inspect-pilot_svg__b)", d: "M501.47 304.09V512L321.42 408.05l180.05-103.96z", opacity: 0.48 }), jsx("path", { fill: "url(#move-inspect-pilot_svg__c)", d: "M501.47 512v207.91L321.42 615.95 501.47 512z", opacity: 0.48 }), jsx("path", { fill: "#0d0d0d", d: "m882.63 512-360.1-207.9v415.8L882.63 512z" }), jsx("path", { fill: "url(#move-inspect-pilot_svg__d)", d: "M522.53 719.91V304.09L882.64 512 522.53 719.91z", opacity: 0.48 })] })] })); const Memo = memo(SvgMoveInspectPilot); export { Memo as default };