@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) • 879 B
JavaScript
import { jsx } from 'react/jsx-runtime';
import { memo } from 'react';
const SvgHexagon = (props) => (jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 97 111", ...props, children: jsx("path", { d: "M93.41 27.506c-9.967 5.756-43.385 25.036-43.385 25.036V2.477c0-1.421-1.538-2.315-2.773-1.6C37.767 6.346 6.864 24.166 1.117 27.482a1.821 1.821 0 0 0-.924 1.6V82.34c0 1.026.839 1.85 1.849 1.85H31.7c1.818 3.13 11.768 20.336 14.876 25.696a1.843 1.843 0 0 0 2.517.676c7.635-4.397 40.246-23.219 46.157-26.637.583-.342.925-.924.925-1.6V29.09a1.846 1.846 0 0 0-2.773-1.6l.007.016ZM3.882 80.523V36.004l25.68 44.519H3.884Zm42.452 21.564L4.566 29.79 46.335 5.693v96.394Zm3.69 3.697v-21.58h37.418l-37.418 21.58Zm42.46-25.285h-42.46V56.8l42.46-24.5v48.2Z", style: {
fill: 'currentColor',
} }) }));
const Memo = memo(SvgHexagon);
export { Memo as default };