@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) • 1.09 kB
JavaScript
import { jsx } from 'react/jsx-runtime';
import * as React from 'react';
import { memo } from 'react';
import { createSvgIcon } from '@mui/material/utils';
const SvgOrthographic = createSvgIcon(React.createElement(React.Fragment, {}, jsx("mask", { id: "a", fill: "#fff", children: jsx("path", { d: "m3 6.75 9-5.25 9 5.25v10.5l-9 5.25-9-5.25V6.75Z" }) }), jsx("path", { d: "m12.504 12.864 9-5.25-1.008-1.728-9 5.25 1.008 1.728ZM2.496 7.614l9 5.25 1.008-1.728-9-5.25-1.008 1.728ZM13 22.5V12h-2v10.5h2ZM3 6.75 1.992 5.022 1 5.602V6.75h2Zm9-5.25 1.008-1.728L12-.815l-1.008.587L12 1.5Zm9 5.25h2V5.601l-.992-.579L21 6.75Zm0 10.5 1.008 1.728.992-.58V17.25h-2Zm-9 5.25-1.008 1.728 1.008.587 1.008-.587L12 22.5Zm-9-5.25H1v1.149l.992.579L3 17.25Zm1.008-8.772 9-5.25-2.016-3.456-9 5.25 2.016 3.456Zm6.984-5.25 9 5.25 2.016-3.456-9-5.25-2.016 3.456ZM19 6.75v10.5h4V6.75h-4Zm.992 8.772-9 5.25 2.016 3.456 9-5.25-2.016-3.456Zm-6.984 5.25-9-5.25-2.016 3.456 9 5.25 2.016-3.456ZM5 17.25V6.75H1v10.5h4Z", mask: "url(#a)" })), 'SvgOrthographic');
const Memo = memo(SvgOrthographic);
export { Memo as default };