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.66 kB
import { jsxs, jsx } from 'react/jsx-runtime'; import { memo } from 'react'; const SvgHexagonCopilotLight = (props) => (jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 52 52", ...props, children: [jsxs("g", { clipPath: "url(#hexagon-copilot-light_svg__a)", children: [jsx("path", { fill: "#fff", d: "M0 16.25C0 7.275 7.275 0 16.25 0h19.5C44.725 0 52 7.275 52 16.25v19.5C52 44.725 44.725 52 35.75 52h-19.5C7.275 52 0 44.725 0 35.75v-19.5Z" }), jsxs("g", { clipPath: "url(#hexagon-copilot-light_svg__b)", children: [jsx("path", { fill: "#83C410", d: "M30.163 40.05c6.368 0 11.53-5.162 11.53-11.53 0-6.367-5.162-11.53-11.53-11.53-6.367 0-11.53 5.163-11.53 11.53 0 6.368 5.163 11.53 11.53 11.53Z" }), jsx("path", { fill: "#01ADFF", fillRule: "evenodd", d: "M19.687 18.038c-5.79 5.79-5.79 15.175 0 20.964 5.789 5.79 15.175 5.79 20.963 0a1.647 1.647 0 0 1 2.33 2.33c-7.076 7.075-18.547 7.075-25.622 0-7.076-7.076-7.076-18.547 0-25.623a1.647 1.647 0 0 1 2.329 2.33Z", clipRule: "evenodd" }), jsx("path", { fill: "#005198", fillRule: "evenodd", d: "M43.267 14.083c-7.72-7.719-20.233-7.719-27.952 0-7.719 7.719-7.719 20.233 0 27.951a1.647 1.647 0 1 1-2.33 2.33c-9.004-9.005-9.004-23.605 0-32.61 9.006-9.005 23.606-9.005 32.61 0a1.647 1.647 0 1 1-2.328 2.329Z", clipRule: "evenodd" })] })] }), jsxs("defs", { children: [jsx("clipPath", { id: "hexagon-copilot-light_svg__a", children: jsx("path", { fill: "#fff", d: "M0 0h52v52H0z" }) }), jsx("clipPath", { id: "hexagon-copilot-light_svg__b", children: jsx("path", { fill: "#fff", d: "M5 5h42v42H5z" }) })] })] })); const Memo = memo(SvgHexagonCopilotLight); export { Memo as default };