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) 837 B
import { jsx, jsxs } from 'react/jsx-runtime'; import * as React from 'react'; import { memo } from 'react'; import { createSvgIcon } from '@mui/material/utils'; const SvgEdge = 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", { mask: "url(#a)", children: [jsx("path", { fillRule: "evenodd", d: "m12.051 2.2 9.75 3.9v11.816l-9.75 3.9-9.75-3.9V9.69l1.5.601V16.9l7.5 3v-6.6l1.5.602V19.9l7.5-3V7.716l-5.96 2.384-2.001-.815 6.692-2.677-6.98-2.792L5.42 6.468 3.42 5.653 12.05 2.2Z", clipRule: "evenodd" }), jsx("path", { d: "m2.351 6.708 10.4 4.2v1.5l-10.4-4.2v-1.5Z" })] })), 'SvgEdge'); const Memo = memo(SvgEdge); export { Memo as default };