@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) • 927 B
JavaScript
import { jsx } from 'react/jsx-runtime';
import * as React from 'react';
import { memo } from 'react';
import { createSvgIcon } from '@mui/material/utils';
const SvgDimensions = 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", { fillRule: "evenodd", clipRule: "evenodd", mask: "url(#a)", children: jsx("path", { d: "M20.5 3.5h-9v9h9v-9ZM10 2v12h12V2H10ZM2.02 5.53 5.55 2l3.53 3.53-1.06 1.061-1.72-1.72v7.279l1.72-1.72 1.06 1.061-3.53 3.53-3.53-3.53 1.06-1.06L4.8 12.15V4.871l-1.72 1.72-1.06-1.06ZM18.491 14.97l3.53 3.53-3.53 3.53-1.06-1.06 1.72-1.72h-6.38l1.72 1.72-1.06 1.06L9.9 18.5l3.53-3.53 1.06 1.06-1.72 1.72h6.38l-1.72-1.72 1.06-1.06Z" }) })), 'SvgDimensions');
const Memo = memo(SvgDimensions);
export { Memo as default };