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/).

10 lines (7 loc) 479 B
import { jsx } from 'react/jsx-runtime'; import * as React from 'react'; import { memo } from 'react'; import { createSvgIcon } from '@mui/material/utils'; const SvgWireframe = createSvgIcon(React.createElement(React.Fragment, {}, jsx("path", { d: "M3 3h18v2H3V3ZM3 19h18v2H3v-2Z" }), jsx("path", { d: "M3 21V3h2v18H3ZM19 21V3h2v18h-2ZM11 21V3h2v18h-2Z" }), jsx("path", { d: "M3 11h18v2H3v-2Z" })), 'SvgWireframe'); const Memo = memo(SvgWireframe); export { Memo as default };