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.94 kB
import { jsxs, jsx } from 'react/jsx-runtime'; import { memo } from 'react'; const SvgTracCheck = (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: "trac-check_svg__a", x1: 554.25, x2: 852.15, y1: 369.88, y2: 528.28, gradientUnits: "userSpaceOnUse", children: [jsx("stop", { offset: 0, stopColor: "#97d9f5" }), jsx("stop", { offset: 1, stopColor: "#231f20" })] }), jsx("linearGradient", { xlinkHref: "#trac-check_svg__a", id: "trac-check_svg__b", x1: 206.47, x2: 424.94, y1: 437.94, y2: 554.1 }), jsx("linearGradient", { xlinkHref: "#trac-check_svg__a", id: "trac-check_svg__c", x1: 327.45, x2: 684.49, y1: 417.08, y2: 606.92 })] }), 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: "#99d9f5", 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("g", { fill: "#0d0d0d", children: jsx("path", { d: "M589.65 640.54v-162.4l1.67-177.99L882.3 471.59 589.65 640.54zM141.7 559.74l280.59 161.99V396.46L141.7 559.74zM435.65 729.6l140.64 80.82V294.08l-140.64-80.5V729.6z" }) }), jsx("path", { fill: "url(#trac-check_svg__a)", d: "m589.65 478.14 1.67-177.99L882.3 471.59l-292.65 6.55z", opacity: 0.48 }), jsx("path", { fill: "url(#trac-check_svg__b)", d: "m141.7 559.74 280.59-.65V396.46L141.7 559.74z", opacity: 0.48 }), jsx("path", { fill: "url(#trac-check_svg__c)", d: "m435.65 729.6 140.64 80.82V294.08l-140.64-80.5V729.6z", opacity: 0.48 })] })] })); const Memo = memo(SvgTracCheck); export { Memo as default };