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.01 kB
import { jsx, jsxs } from 'react/jsx-runtime'; import * as React from 'react'; import { memo } from 'react'; import { createSvgIcon } from '@mui/material/utils'; const SvgFrontThreeD = 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 0h24v24H0V0Z" }) }), jsxs("g", { mask: "url(#a)", children: [jsx("path", { fillRule: "evenodd", d: "M14.9 9.016H2.8v-1.5h13.6v13.582h-1.5V9.016Z", clipRule: "evenodd" }), jsx("path", { fillRule: "evenodd", d: "M2.001 22V7.965l6-5.965h14v13.985L16.051 22H2.001Zm13.424-1.5 5.076-5.132V3.5H8.62L3.5 8.589V20.5h11.924Z", clipRule: "evenodd" }), jsx("path", { fillRule: "evenodd", d: "m21.382 3.582-5.3 5.314-1.062-1.06 5.3-5.313 1.062 1.06Z", clipRule: "evenodd" }), jsx("path", { d: "M2.701 8.566h12.9v12.331h-12.9V8.567Z" })] })), 'SvgFrontThreeD'); const Memo = memo(SvgFrontThreeD); export { Memo as default };