@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.34 kB
JavaScript
import { jsxs, jsx } from 'react/jsx-runtime';
import { memo } from 'react';
const SvgMetrologyConnector = (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: "metrology-connector_svg__b", x1: 0.13, x2: 1023.87, y1: 239.83, y2: 784.17, gradientUnits: "userSpaceOnUse", children: [jsx("stop", { offset: 0, stopColor: "#a5d867" }), jsx("stop", { offset: 0.19, stopColor: "#a1d668" }), jsx("stop", { offset: 0.35, stopColor: "#97d26d" }), jsx("stop", { offset: 0.49, stopColor: "#86cc76" }), jsx("stop", { offset: 0.63, stopColor: "#6fc382" }), jsx("stop", { offset: 0.76, stopColor: "#50b791" }), jsx("stop", { offset: 0.88, stopColor: "#2ba8a4" }), jsx("stop", { offset: 1, stopColor: "#0098ba" })] }), jsxs("linearGradient", { id: "metrology-connector_svg__a", x1: 771.9, x2: 339.57, y1: 254.3, y2: 484.18, gradientTransform: "matrix(-1 0 0 1 1024 0)", gradientUnits: "userSpaceOnUse", children: [jsx("stop", { offset: 0, stopColor: "#a5d867" }), jsx("stop", { offset: 0.89, stopColor: "#0d0d0d" })] }), jsx("linearGradient", { xlinkHref: "#metrology-connector_svg__a", id: "metrology-connector_svg__c", x1: 704.66, x2: 319.56, y1: 512.58, y2: 717.35 })] }), 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("rect", { width: 1024, height: 1024, fill: "url(#metrology-connector_svg__b)", "data-name": "Background - Lv3", rx: 320, ry: 320 }), jsxs("g", { "data-name": "[Place Icon Here - Standard Icon]", children: [jsx("g", { fill: "#0d0d0d", children: jsx("path", { d: "m407.03 542.19-167.94-96.81L428.03 336.3l-167.95-97.01 167.95-96.96 335.25 193.56-356.25 206.3zM239.09 881.67V663.5l545.82-315.12v217.64L239.09 881.67z" }) }), jsx("path", { fill: "url(#metrology-connector_svg__a)", d: "m407.03 542.19-167.94-96.81L428.03 336.3l-167.95-97.01 167.95-96.96 335.25 193.56-356.25 206.3z", opacity: 0.48 }), jsx("path", { fill: "url(#metrology-connector_svg__c)", d: "M239.09 881.67V663.5l545.82-315.12v217.64L239.09 881.67z", opacity: 0.48 })] })] }));
const Memo = memo(SvgMetrologyConnector);
export { Memo as default };