@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.
10 lines (7 loc) • 1.05 kB
JavaScript
import { jsxs, jsx } from 'react/jsx-runtime';
import { memo } from 'react';
const SvgHxgnDigitalMaterials = (props) => (jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 3072 2560", ...props, children: [jsx("defs", { children: jsxs("linearGradient", { id: "hxgn-digital-materials_svg__a", x1: 920.15, x2: 2154.48, y1: 948.41, y2: 1604.72, gradientUnits: "userSpaceOnUse", children: [jsx("stop", { offset: 0, stopColor: "#f95b61" }), jsx("stop", { offset: 0.51, stopColor: "#be2a33" }), jsx("stop", { offset: 0.74, stopColor: "#9e2831" }), jsx("stop", { offset: 1, stopColor: "#712a30" })] }) }), jsx("path", { d: "m1260.12 1885.39-275.88-160.93v-896.6l275.88-160.93v1218.46Zm0-1218.46 505.78 293.12 277.55-164.46L1536 506l-275.88 160.93Zm505.78 925.34-505.78 295.34L1540.27 2048l503.18-294.8-277.55-160.93Zm45.98-609.23v586.24l275.88 160.93v-908.1l-275.88 160.93Z", style: {
fill: 'url(#hxgn-digital-materials_svg__a)',
} })] }));
const Memo = memo(SvgHxgnDigitalMaterials);
export { Memo as default };