@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) • 413 B
JavaScript
import { jsx } from 'react/jsx-runtime';
import * as React from 'react';
import { memo } from 'react';
import { createSvgIcon } from '@mui/material/utils';
const SvgCube = createSvgIcon(React.createElement(React.Fragment, {}, jsx("path", { d: "M19.73 6.67 12 10.34 4.27 6.67 12 3zM3 8.13l8.1 3.84V21L3 17.15zM12.9 21v-9.03L21 8.13v9.02z" })), 'SvgCube');
const Memo = memo(SvgCube);
export { Memo as default };