@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) • 1.12 kB
JavaScript
import { jsx } from 'react/jsx-runtime';
import * as React from 'react';
import { memo } from 'react';
import { createSvgIcon } from '@mui/material/utils';
const SvgPart = 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: "M3.5 20.5v-4.25H5V19h2.75v1.5H3.5Zm12.75 0V19H19v-2.75h1.5v4.25h-4.25Zm-4.25-2c-1.8 0-3.333-.633-4.6-1.9-1.267-1.267-1.9-2.8-1.9-4.6 0-1.8.633-3.333 1.9-4.6 1.267-1.267 2.8-1.9 4.6-1.9 1.8 0 3.333.633 4.6 1.9 1.267 1.267 1.9 2.8 1.9 4.6 0 1.8-.633 3.333-1.9 4.6-1.267 1.267-2.8 1.9-4.6 1.9Zm0-1.5c1.383 0 2.563-.488 3.538-1.463C16.513 14.562 17 13.383 17 12s-.487-2.563-1.462-3.538C14.563 7.487 13.383 7 12 7s-2.562.487-3.537 1.462C7.488 9.437 7 10.617 7 12s.488 2.562 1.463 3.537C9.438 16.512 10.617 17 12 17ZM3.5 7.75V3.5h4.25V5H5v2.75H3.5Zm15.5 0V5h-2.75V3.5h4.25v4.25H19Z" }) })), 'SvgPart');
const Memo = memo(SvgPart);
export { Memo as default };