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) 671 B
import { jsx } from 'react/jsx-runtime'; import * as React from 'react'; import { memo } from 'react'; import { createSvgIcon } from '@mui/material/utils'; const SvgVertex = 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", { fillRule: "evenodd", clipRule: "evenodd", mask: "url(#a)", children: jsx("path", { d: "M11.5 4.5h-7v7h7v-7ZM3 3v10h10V3H3ZM7.25 21v-8h1.5v8h-1.5ZM13 7.25h8v1.5h-8v-1.5Z" }) })), 'SvgVertex'); const Memo = memo(SvgVertex); export { Memo as default };