@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) • 687 B
JavaScript
import { jsx } from 'react/jsx-runtime';
import * as React from 'react';
import { memo } from 'react';
import { createSvgIcon } from '@mui/material/utils';
const SvgReport = 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: "M8.25 11.75v-1.5h7.5v1.5h-7.5Zm0-4v-1.5h7.5v1.5h-7.5ZM6 14.25h8.85l3.15 4.1V4H6v10.25ZM6 20h11.375l-3.25-4.25H6V20Zm13.5 1.5h-15v-19h15v19Z" }) })), 'SvgReport');
const Memo = memo(SvgReport);
export { Memo as default };