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.58 kB
import { jsxs, jsx } from 'react/jsx-runtime'; import { memo } from 'react'; const SvgMetrologyCommunicationInterface = (props) => (jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 52 52", ...props, children: [jsx("g", { clipPath: "url(#metrology-communication-interface_svg__a)", children: jsxs("g", { clipPath: "url(#metrology-communication-interface_svg__b)", children: [jsx("path", { fill: "#97D9F5", d: "M0 16.2C0 7.3 7.3 0 16.2 0h19.5c9 0 16.2 7.3 16.2 16.2v19.5c0 9-7.3 16.2-16.2 16.2H16.2C7.3 52 0 44.7 0 35.8V16.2Z" }), jsx("path", { fill: "#0D0D0D", d: "M22.1 15.2 7.3 23.6 21.8 32l6.2-3.6-8.3-4.8 8.4-4.8-6-3.6Z" }), jsx("path", { fill: "#0D0D0D", d: "m23.9 23.6 8.3 4.8-8.3 4.8 6.2 3.6 14.6-8.4L30.1 20l-6.2 3.6Z" }), jsx("path", { fill: "url(#metrology-communication-interface_svg__c)", d: "M22.1 15.2 7.3 23.6 21.8 32l6.2-3.6-8.3-4.8 8.4-4.8-6-3.6Z", opacity: 0.5 }), jsx("path", { fill: "url(#metrology-communication-interface_svg__d)", d: "m23.9 23.6 8.3 4.8-8.3 4.8 6.2 3.6 14.6-8.4L30.1 20l-6.2 3.6Z", opacity: 0.5 })] }) }), jsxs("defs", { children: [jsxs("linearGradient", { id: "metrology-communication-interface_svg__c", x1: 10.5, x2: 28.7, y1: 17.5, y2: 27.2, gradientUnits: "userSpaceOnUse", children: [jsx("stop", { stopColor: "#97D9F5" }), jsx("stop", { offset: 0.1, stopColor: "#7FB6CD" }), jsx("stop", { offset: 0.3, stopColor: "#5D8393" }), jsx("stop", { offset: 0.5, stopColor: "#405863" }), jsx("stop", { offset: 0.6, stopColor: "#2A383D" }), jsx("stop", { offset: 0.8, stopColor: "#1A2023" }), jsx("stop", { offset: 0.9, stopColor: "#101212" }), jsx("stop", { offset: 1, stopColor: "#0D0D0D" })] }), jsxs("linearGradient", { id: "metrology-communication-interface_svg__d", x1: 23.3, x2: 41.5, y1: 24.8, y2: 34.4, gradientUnits: "userSpaceOnUse", children: [jsx("stop", { stopColor: "#97D9F5" }), jsx("stop", { offset: 0.1, stopColor: "#7FB6CD" }), jsx("stop", { offset: 0.3, stopColor: "#5D8393" }), jsx("stop", { offset: 0.5, stopColor: "#405863" }), jsx("stop", { offset: 0.6, stopColor: "#2A383D" }), jsx("stop", { offset: 0.8, stopColor: "#1A2023" }), jsx("stop", { offset: 0.9, stopColor: "#101212" }), jsx("stop", { offset: 1, stopColor: "#0D0D0D" })] }), jsx("clipPath", { id: "metrology-communication-interface_svg__a", children: jsx("path", { fill: "#fff", d: "M0 0h52v52H0z" }) }), jsx("clipPath", { id: "metrology-communication-interface_svg__b", children: jsx("path", { fill: "#fff", d: "M0 0h52v52H0z" }) })] })] })); const Memo = memo(SvgMetrologyCommunicationInterface); export { Memo as default };