@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
JavaScript
import { jsxs, jsx } from 'react/jsx-runtime';
import { memo } from 'react';
const SvgMscSdk = (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: "msc-sdk_svg__a", x1: 158.18, x2: 422.09, y1: 307.06, y2: 447.38, gradientUnits: "userSpaceOnUse", children: [jsx("stop", { offset: 0, stopColor: "#f95b61" }), jsx("stop", { offset: 0.89, stopColor: "#0d0d0d" })] }), jsx("linearGradient", { xlinkHref: "#msc-sdk_svg__a", id: "msc-sdk_svg__b", x1: 344.79, x2: 699.64, y1: 430.34, y2: 619.01 }), jsx("linearGradient", { xlinkHref: "#msc-sdk_svg__a", id: "msc-sdk_svg__c", x1: 205.39, x2: 557.69, y1: 664.99, y2: 852.31 })] }), 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: "#f95b61", 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("path", { d: "M611.63 377 266.94 576.75l162.51 93.83 348.78-199.37L611.63 377zM245.84 588.93l346.12 198.93-162.51 93.83-183.68-104.55.07-188.21zM246.27 565.22l-.49-422.91 163.51 94.41.28 234.23-163.3 94.27z" }), jsx("path", { fill: "url(#msc-sdk_svg__a)", d: "m246.27 565.22-.49-422.91 163.51 94.41.28 234.23-163.3 94.27z", opacity: 0.48 }), jsx("path", { fill: "url(#msc-sdk_svg__b)", d: "M611.63 377 266.94 576.75l162.51 93.83 348.78-199.37L611.63 377z", opacity: 0.48 }), jsx("path", { fill: "url(#msc-sdk_svg__c)", d: "m245.84 588.93 346.12 198.93-162.51 93.83-183.68-104.55.07-188.21z", opacity: 0.48 })] })] }));
const Memo = memo(SvgMscSdk);
export { Memo as default };