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.

25 lines (22 loc) 2.63 kB
import { jsxs, jsx } from 'react/jsx-runtime'; import { memo } from 'react'; const SvgRomaxSuite = (props) => (jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", xmlSpace: "preserve", style: { enableBackground: 'new 0 0 1024 1022', }, viewBox: "0 0 1024 1022", ...props, children: [jsx("style", { children: '.romax-suite_svg__st19{fill:#0d0d0d}' }), jsxs("linearGradient", { id: "romax-suite_svg__SVGID_00000042713643824012680660000012918669638752326273_", x1: 499.187, x2: 844.983, y1: 414.428, y2: 598.292, gradientUnits: "userSpaceOnUse", children: [jsx("stop", { offset: 0.03, style: { stopColor: '#ea9030', } }), jsx("stop", { offset: 1, style: { stopColor: '#0d0d0d', stopOpacity: 0, } })] }), jsx("linearGradient", { xlinkHref: "#romax-suite_svg__SVGID_00000042713643824012680660000012918669638752326273_", id: "romax-suite_svg__SVGID_00000148642921559224930460000006023629123898294436_", x1: 168.539, x2: 486.473, y1: 420.2, y2: 589.248, gradientUnits: "userSpaceOnUse" }), jsxs("g", { id: "romax-suite_svg__Layer_11", children: [jsx("path", { d: "M702.1 0H321.9C144.1 0 0 144.1 0 321.9v380.2C0 879.9 144.1 1024 321.9 1024h380.2c177.8 0 321.9-144.1 321.9-321.9V321.9C1024 144.1 879.9 0 702.1 0z", style: { fill: '#ea9030', } }), jsx("image", { xlinkHref: "C4B2307C.jpg", width: 256, height: 117, style: { overflow: 'visible', }, transform: "translate(5 -756) scale(2.4492)" }), jsx("path", { d: "M401.9 494.8h100.5L341.6 216.4 170.9 512.3l170.7 295.8 160.8-278.5H401.9L341.6 634l-70.3-121.7 70.3-121.9zM622.8 494.8H522.4l160.7-278.4 170.8 295.9-170.8 295.8-160.7-278.5h100.4L683.1 634l70.3-121.7-70.3-121.9z", className: "romax-suite_svg__st19" }), jsx("path", { d: "m341.6 390.4-70.3 121.9L341.6 634l60.3-104.4h100.5L341.6 808.1 170.9 512.3l170.7-295.9 160.7 278.4H401.9l-60.3-104.4z", style: { opacity: 0.8, fill: 'url(#romax-suite_svg__SVGID_00000148642921559224930460000006023629123898294436_)', } }), jsx("path", { d: "m683.1 390.4 70.3 121.9L683.1 634l-60.3-104.4H522.4l160.7 278.5 170.8-295.8-170.8-295.9-160.7 278.4h100.4z", style: { opacity: 0.8, fill: 'url(#romax-suite_svg__SVGID_00000042713643824012680660000012918669638752326273_)', } })] })] })); const Memo = memo(SvgRomaxSuite); export { Memo as default };