@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) • 548 B
JavaScript
import { jsx } from 'react/jsx-runtime';
import * as React from 'react';
import { memo } from 'react';
import { createSvgIcon } from '@mui/material/utils';
const SvgBack = createSvgIcon(React.createElement(React.Fragment, {}, jsx("path", { d: "M7 3v2h12v12h2V3H7ZM3 7h2v2H3V7ZM5 19H3v2h2v-2Z" }), jsx("path", { d: "M7 7h2v2H7V7ZM9 19H7v2h2v-2ZM5 11v2H3v-2h2ZM17 13v-2h-2v2h2ZM11 7h2v2h-2V7ZM13 19h-2v2h2v-2ZM5 15v2H3v-2h2ZM17 17v-2h-2v2h2ZM15 7h2v2h-2V7ZM17 19h-2v2h2v-2Z" })), 'SvgBack');
const Memo = memo(SvgBack);
export { Memo as default };