@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) • 506 B
JavaScript
import { jsx } from 'react/jsx-runtime';
import * as React from 'react';
import { memo } from 'react';
import { createSvgIcon } from '@mui/material/utils';
const SvgBottom = createSvgIcon(React.createElement(React.Fragment, {}, jsx("path", { d: "M3 21v-2h18v2H3ZM3 17v-2h2v2H3ZM3 13v-2h2v2H3ZM3 9V7h2v2H3ZM3 5V3h2v2H3ZM7 5V3h2v2H7ZM11 5V3h2v2h-2ZM15 5V3h2v2h-2ZM19 5V3h2v2h-2ZM19 9V7h2v2h-2ZM19 13v-2h2v2h-2ZM19 17v-2h2v2h-2Z" })), 'SvgBottom');
const Memo = memo(SvgBottom);
export { Memo as default };