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.

12 lines (9 loc) 1.64 kB
import { jsxs, jsx } from 'react/jsx-runtime'; import { memo } from 'react'; const SvgSpatialAnalyzer = (props) => (jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", id: "spatial-analyzer_svg__Layer_2", "data-name": "Layer 2", viewBox: "0 0 1024 1024", ...props, children: [jsxs("defs", { children: [jsxs("linearGradient", { id: "spatial-analyzer_svg__linear-gradient", x1: 271.77, x2: 521.67, y1: 446.93, y2: 579.8, gradientUnits: "userSpaceOnUse", children: [jsx("stop", { offset: 0, stopColor: "#97d9f5" }), jsx("stop", { offset: 1, stopColor: "#0d0d0d", stopOpacity: 0 })] }), jsx("style", { children: '.spatial-analyzer_svg__cls-3{fill:#0d0d0d}' })] }), jsx("path", { id: "spatial-analyzer_svg__background-lv3", 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", style: { fill: '#97d9f5', } }), jsxs("g", { id: "spatial-analyzer_svg__visual", children: [jsx("path", { d: "M345.95 429.98 171.12 731.33l79.74 137.37 254.02-438.63-158.93-.09zM678.05 429.98l-158.93.09L773.14 868.7l79.74-137.37-174.83-301.35zM512.56 692.08 577 580.75l-64.67-111.43-64.41 111.41 64.64 111.35zM671.8 405 512.29 142.07 353.43 405H671.8z", className: "spatial-analyzer_svg__cls-3" }), jsx("path", { d: "M512.58 405H353.42l158.87-263 .29 263ZM448 580.66l64.58 111.25-.23-222.56L448 580.66ZM345.95 429.91 171.11 731.26l79.75 137.37L504.87 430l-158.92-.09Z", style: { fill: 'url(#spatial-analyzer_svg__linear-gradient)', } })] })] })); const Memo = memo(SvgSpatialAnalyzer); export { Memo as default };