@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) • 696 B
JavaScript
import { jsx } from 'react/jsx-runtime';
import * as React from 'react';
import { memo } from 'react';
import { createSvgIcon } from '@mui/material/utils';
const SvgCubeFilled = createSvgIcon(React.createElement(React.Fragment, {}, jsx("path", { d: "m18.5 9.317-5 2.778v6.424l5-2.778V9.317ZM16.882 6.784 12 4.072 7.118 6.784 12 9.496l4.882-2.712ZM5.5 9.317l5 2.778v6.424l-5-2.778V9.317Z" }), jsx("path", { fillRule: "evenodd", d: "m12 1.5 9 5v11l-9 5-9-5v-11l9-5Zm1 10.3 6-3.333v7.568l-6 3.334V11.8Zm-1-8.3 5.911 3.284L12 10.068 6.089 6.784 12 3.5ZM5 8.467l6 3.333v7.569l-6-3.334V8.467Z", clipRule: "evenodd" })), 'SvgCubeFilled');
const Memo = memo(SvgCubeFilled);
export { Memo as default };