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.

68 lines (65 loc) 5.16 kB
import { jsxs, jsx } from 'react/jsx-runtime'; import { memo } from 'react'; const SvgAdamsModeler = (props) => (jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlSpace: "preserve", viewBox: "0 0 1024 1024", ...props, children: [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" }), jsx("path", { fill: "#0D0D0D", d: "m459.97 316.59 120.22-69.4 135.26 78.08v294.99l-120.23 69.41V394.68zM444.94 325.27v312.35l120.23 69.4-120.23 69.42-135.25-78.09V403.36zM715.45 637.62l120.22 69.4-255.48 147.5-120.22-69.41zM444.94 169.1l120.23 69.41L309.69 386l-120.22-69.41z" }), jsxs("linearGradient", { id: "adams-modeler_svg__a", x1: 486.327, x2: 689.09, y1: 267.028, y2: 374.839, gradientUnits: "userSpaceOnUse", children: [jsx("stop", { offset: 0.08, style: { stopColor: '#f95b61', } }), jsx("stop", { offset: 0.173, style: { stopColor: '#ea565c', } }), jsx("stop", { offset: 0.352, style: { stopColor: '#c2494d', } }), jsx("stop", { offset: 0.599, style: { stopColor: '#823437', } }), jsx("stop", { offset: 0.902, style: { stopColor: '#2b1718', } }), jsx("stop", { offset: 0.999, style: { stopColor: '#0d0d0d', } })] }), jsx("path", { fill: "url(#adams-modeler_svg__a)", d: "m595.22 394.68-135.25-78.09 120.22-69.4 135.26 78.08", opacity: 0.4 }), jsxs("linearGradient", { id: "adams-modeler_svg__b", x1: 335.905, x2: 538.669, y1: 649.05, y2: 756.862, gradientUnits: "userSpaceOnUse", children: [jsx("stop", { offset: 0.121, style: { stopColor: '#0d0d0d', } }), jsx("stop", { offset: 0.224, style: { stopColor: '#120e0f', } }), jsx("stop", { offset: 0.338, style: { stopColor: '#1f1313', } }), jsx("stop", { offset: 0.457, style: { stopColor: '#351a1b', } }), jsx("stop", { offset: 0.579, style: { stopColor: '#542426', } }), jsx("stop", { offset: 0.704, style: { stopColor: '#7c3234', } }), jsx("stop", { offset: 0.832, style: { stopColor: '#ac4246', } }), jsx("stop", { offset: 0.958, style: { stopColor: '#e5545a', } }), jsx("stop", { offset: 1, style: { stopColor: '#f95b61', } })] }), jsx("path", { fill: "url(#adams-modeler_svg__b)", d: "m444.94 637.62 120.23 69.4-120.23 69.42-135.25-78.09", opacity: 0.32 }), jsxs("linearGradient", { id: "adams-modeler_svg__c", x1: 517.555, x2: 778.081, y1: 676.809, y2: 815.333, gradientUnits: "userSpaceOnUse", children: [jsx("stop", { offset: 0, style: { stopColor: '#f95b61', } }), jsx("stop", { offset: 0.153, style: { stopColor: '#ce4d52', } }), jsx("stop", { offset: 0.462, style: { stopColor: '#7c3235', } }), jsx("stop", { offset: 0.716, style: { stopColor: '#401e1f', } }), jsx("stop", { offset: 0.901, style: { stopColor: '#1b1212', } }), jsx("stop", { offset: 0.999, style: { stopColor: '#0d0d0d', } })] }), jsx("path", { fill: "url(#adams-modeler_svg__c)", d: "m715.45 637.62 120.22 69.4-255.48 147.5-120.22-69.41z", opacity: 0.32 }), jsxs("linearGradient", { id: "adams-modeler_svg__d", x1: 247.059, x2: 507.581, y1: 208.29, y2: 346.812, gradientUnits: "userSpaceOnUse", children: [jsx("stop", { offset: 0, style: { stopColor: '#f95b61', } }), jsx("stop", { offset: 0.126, style: { stopColor: '#f55a60', } }), jsx("stop", { offset: 0.256, style: { stopColor: '#e8565b', } }), jsx("stop", { offset: 0.388, style: { stopColor: '#d44f54', } }), jsx("stop", { offset: 0.521, style: { stopColor: '#b74549', } }), jsx("stop", { offset: 0.655, style: { stopColor: '#92393c', } }), jsx("stop", { offset: 0.79, style: { stopColor: '#642a2c', } }), jsx("stop", { offset: 0.923, style: { stopColor: '#2f1819', } }), jsx("stop", { offset: 0.999, style: { stopColor: '#0d0d0d', } })] }), jsx("path", { fill: "url(#adams-modeler_svg__d)", d: "m444.94 169.1 120.23 69.41L309.69 386l-120.22-69.41z", opacity: 0.64 })] })); const Memo = memo(SvgAdamsModeler); export { Memo as default };