@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/).
12 lines (9 loc) • 781 B
JavaScript
import { jsx, jsxs } from 'react/jsx-runtime';
import * as React from 'react';
import { memo } from 'react';
import { createSvgIcon } from '@mui/material/utils';
const SvgIsoThree = createSvgIcon(React.createElement(React.Fragment, {}, jsx("mask", { id: "a", width: 24, height: 24, x: 0, y: 0, maskUnits: "userSpaceOnUse", style: {
maskType: 'alpha',
}, children: jsx("path", { d: "M0 0h24v24H0z" }) }), jsxs("g", { mask: "url(#a)", children: [jsx("path", { fillRule: "evenodd", d: "M6.75 12.551V6h-1.5v8.283l11.375 6.566.75-1.299-9.875-5.7 9.875-5.7-.75-1.3-9.875 5.701Z", clipRule: "evenodd" }), jsx("path", { d: "m3 7 3-5 3 5H3ZM18 10.5l1-5-6 .99 5 4.01ZM18 17l1 5-6-.99L18 17Z" })] })), 'SvgIsoThree');
const Memo = memo(SvgIsoThree);
export { Memo as default };