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.29 kB
import { jsx } from 'react/jsx-runtime'; import * as React from 'react'; import { memo } from 'react'; import { createSvgIcon } from '@mui/material/utils'; const SvgSetup = 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: "m1.125 19.5 18.3-18.3v9.85h-1.5v-6.2L4.775 18h6.55v1.5h-10.2Zm15.65 2.425-.2-1.2a4.138 4.138 0 0 1-.737-.287 2.997 2.997 0 0 1-.638-.463l-1.125.4L13.3 19.1l.925-.775a3 3 0 0 1-.125-.85c0-.283.042-.558.125-.825l-.925-.8.775-1.25 1.125.375a4.08 4.08 0 0 1 .638-.45c.208-.117.454-.217.737-.3l.2-1.175h1.5l.225 1.175c.283.083.53.183.738.3.208.117.412.267.612.45L21 14.6l.775 1.25-.925.8c.067.267.1.542.1.825 0 .283-.033.567-.1.85l.925.775L21 20.375l-1.15-.4c-.2.2-.404.354-.612.463a4.17 4.17 0 0 1-.738.287l-.225 1.2h-1.5Zm.75-2.375c.583 0 1.075-.204 1.475-.612.4-.409.6-.896.6-1.463 0-.567-.2-1.054-.6-1.463a1.985 1.985 0 0 0-1.475-.612c-.567 0-1.054.204-1.463.612a1.999 1.999 0 0 0-.612 1.463c0 .567.204 1.054.612 1.463.409.408.896.612 1.463.612Z" }) })), 'SvgSetup'); const Memo = memo(SvgSetup); export { Memo as default };