@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) • 879 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 SvgPrism = 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", { fillRule: "evenodd", clipRule: "evenodd", mask: "url(#a)", children: [jsx("path", { d: "M8.62 3.5 6.12 6l2.5 2.5h6.758l2.5-2.5-2.5-2.5H8.621ZM16 2H8L4 6l4 4h8l4-4-4-4Z" }), jsx("path", { d: "M5.5 17.379 8.62 20.5h6.758l3.122-3.121V6.62L15.378 3.5H8.621L5.5 6.621V17.38ZM8 2 4 6v12l4 4h8l4-4V6l-4-4H8Z" }), jsx("path", { d: "M7.85 21V9h1.5v12h-1.5ZM14.65 21V9h1.5v12h-1.5Z" })] })), 'SvgPrism');
const Memo = memo(SvgPrism);
export { Memo as default };