@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) • 704 B
JavaScript
import { jsx } from 'react/jsx-runtime';
import * as React from 'react';
import { memo } from 'react';
import { createSvgIcon } from '@mui/material/utils';
const SvgInvalid = 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" }) }), jsx("g", { mask: "url(#a)", children: jsx("path", { d: "M1.5 15.5v-3.775L4.975 3.5H16.8v12l-6.65 6.6-1.35-1.375L10 15.5H1.5ZM15.3 5H6l-3 7v2h8.9l-1.25 5.475 4.65-4.625V5Zm1.5 10.5V14H20V5h-3.2V3.5h4.7v12h-4.7Z" }) })), 'SvgInvalid');
const Memo = memo(SvgInvalid);
export { Memo as default };