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) 1.09 kB
import { jsx } from 'react/jsx-runtime'; import * as React from 'react'; import { memo } from 'react'; import { createSvgIcon } from '@mui/material/utils'; const SvgQueued = 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.15 20h7.7v-3c0-1.117-.37-2.083-1.112-2.9-.742-.817-1.655-1.225-2.738-1.225s-1.996.408-2.738 1.225c-.741.817-1.112 1.783-1.112 2.9v3ZM12 11.125c1.083 0 1.996-.408 2.738-1.225.741-.817 1.112-1.783 1.112-2.9V4h-7.7v3c0 1.117.37 2.083 1.112 2.9.742.817 1.655 1.225 2.738 1.225ZM4.6 21.5V20h2.05v-3c0-1.083.28-2.083.838-3a4.888 4.888 0 0 1 2.287-2 4.888 4.888 0 0 1-2.287-2 5.657 5.657 0 0 1-.838-3V4H4.6V2.5h14.8V4h-2.05v3a5.663 5.663 0 0 1-.837 3 4.894 4.894 0 0 1-2.288 2 4.894 4.894 0 0 1 2.288 2c.558.917.837 1.917.837 3v3h2.05v1.5H4.6Z" }) })), 'SvgQueued'); const Memo = memo(SvgQueued); export { Memo as default };