@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) • 495 B
JavaScript
import { jsx } from 'react/jsx-runtime';
import * as React from 'react';
import { memo } from 'react';
import { createSvgIcon } from '@mui/material/utils';
const SvgGroup = createSvgIcon(React.createElement(React.Fragment, {}, jsx("path", { fill: "none", stroke: "#000", strokeMiterlimit: 10, strokeWidth: 1.5, d: "M14.2 20.2H3.8V9.8h10.5v10.4h-.1Zm6-16.4H9.8v10.5h10.5V3.8h-.1Z" }), jsx("path", { d: "M15 9H9v6h6V9Z" })), 'SvgGroup');
const Memo = memo(SvgGroup);
export { Memo as default };