@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) • 504 B
JavaScript
import { jsx } from 'react/jsx-runtime';
import * as React from 'react';
import { memo } from 'react';
import { createSvgIcon } from '@mui/material/utils';
const SvgRight = createSvgIcon(React.createElement(React.Fragment, {}, jsx("path", { d: "M21 21h-2V3h2v18ZM17 21h-2v-2h2v2ZM13 21h-2v-2h2v2ZM9 21H7v-2h2v2ZM5 21H3v-2h2v2ZM5 17H3v-2h2v2ZM5 13H3v-2h2v2ZM5 9H3V7h2v2ZM5 5H3V3h2v2ZM9 5H7V3h2v2ZM13 5h-2V3h2v2ZM17 5h-2V3h2v2Z" })), 'SvgRight');
const Memo = memo(SvgRight);
export { Memo as default };