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.08 kB
import { jsx, jsxs } from 'react/jsx-runtime'; import * as React from 'react'; import { memo } from 'react'; import { createSvgIcon } from '@mui/material/utils'; const SvgWireframeThreeD = 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", { fillRule: "evenodd", clipRule: "evenodd", mask: "url(#a)", children: [jsx("path", { d: "m12 2.192 9.75 3.9v11.816l-9.75 3.9-9.75-3.9V6.092l9.75-3.9ZM3.75 7.708l7.5 3v9.184l-7.5-3V7.708Zm9 12.184 7.5-3V7.708l-7.5 3v9.184ZM12 9.392 18.98 6.6 12 3.808 5.02 6.6 12 9.392Z" }), jsx("path", { d: "m8.15 8.909 8.827-3.512-.554-1.394L6.65 7.891V19.3h1.5V8.909Z" }), jsx("path", { d: "M15.85 8.909 7.023 5.397l.554-1.394 9.773 3.888V19.3h-1.5V8.909Z" }), jsx("path", { d: "m2.722 12.796.557-1.392L12 14.892l8.722-3.488.557 1.392L12 16.508l-9.278-3.712Z" })] })), 'SvgWireframeThreeD'); const Memo = memo(SvgWireframeThreeD); export { Memo as default };