UNPKG

@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) 813 B
import { jsx, jsxs } from 'react/jsx-runtime'; import * as React from 'react'; import { memo } from 'react'; import { createSvgIcon } from '@mui/material/utils'; const SvgScale = 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", { mask: "url(#a)", children: [jsx("path", { fillRule: "evenodd", d: "M20.5 3.5h-11v11h11v-11ZM8 2v14h14V2H8Z", clipRule: "evenodd" }), jsx("path", { d: "M2 20.5h1.5V22H2v-1.5ZM5 20.5h1.5V22H5v-1.5ZM8 20.5h1.5V22H8v-1.5ZM8 17.5h1.5V19H8v-1.5ZM2 17.5h1.5V19H2v-1.5ZM2 14.5h1.5V16H2v-1.5ZM5 14.5h1.5V16H5v-1.5Z" })] })), 'SvgScale'); const Memo = memo(SvgScale); export { Memo as default };