UNPKG

@nexusui/icons

Version:

This package contains custom icons designed specifically for NexusUI applications. These icons work in exactly the same way as the icons from [MUI](https://mui.com/material-ui/api/svg-icon/).

12 lines (9 loc) 701 B
import { jsx } from 'react/jsx-runtime'; import * as React from 'react'; import { memo } from 'react'; import { createSvgIcon } from '@mui/material/utils'; const SvgHexagon = createSvgIcon(React.createElement(React.Fragment, {}, jsx("mask", { id: "a", width: 24, height: 24, x: 0, y: 0, maskUnits: "userSpaceOnUse", style: { maskType: 'alpha', }, children: jsx("path", { d: "M0 0h24v24H0z" }) }), jsx("g", { mask: "url(#a)", children: jsx("path", { fillRule: "evenodd", d: "M8.621 4.5 4.5 8.621v6.758L8.621 19.5h6.758l4.121-4.121V8.62L15.379 4.5H8.62ZM16 3H8L3 8v8l5 5h8l5-5V8l-5-5Z", clipRule: "evenodd" }) })), 'SvgHexagon'); const Memo = memo(SvgHexagon); export { Memo as default };