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/).

10 lines (7 loc) 1.08 kB
import { jsx } from 'react/jsx-runtime'; import * as React from 'react'; import { memo } from 'react'; import { createSvgIcon } from '@mui/material/utils'; const SvgPerspective = createSvgIcon(React.createElement(React.Fragment, {}, jsx("mask", { id: "a", fill: "#fff", children: jsx("path", { d: "M2 5.857 12 4l10 1.857v9.286l-10 5-10-5V5.857Z" }) }), jsx("path", { d: "m12.275 9.676 10-2.857-.55-1.923-10 2.857.55 1.923ZM1.725 6.819l10 2.857.55-1.923-10-2.857-.55 1.923ZM13 20.143V8.714h-2v11.429h2ZM2 5.857l-.365-1.966L0 4.194v1.663h2ZM12 4l.365-1.966L12 1.966l-.365.068L12 4Zm10 1.857h2V4.194l-1.635-.303L22 5.857Zm0 9.286.894 1.789L24 16.379v-1.236h-2Zm-10 5-.894 1.789.894.447.894-.447-.894-1.79Zm-10-5H0v1.236l1.106.553.894-1.79Zm.365-7.32 10-1.857-.73-3.932-10 1.857.73 3.933Zm9.27-1.857 10 1.858.73-3.933-10-1.857-.73 3.932ZM20 5.857v9.286h4V5.857h-4Zm1.106 7.497-10 5 1.788 3.578 10-5-1.788-3.578Zm-8.212 5-10-5-1.788 3.578 10 5 1.788-3.578ZM4 15.143V5.857H0v9.286h4Z", mask: "url(#a)" })), 'SvgPerspective'); const Memo = memo(SvgPerspective); export { Memo as default };