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) 701 B
import { jsx } from 'react/jsx-runtime'; import * as React from 'react'; import { memo } from 'react'; import { createSvgIcon } from '@mui/material/utils'; const SvgLayer = 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: "m12 19.9-8.2-6.375 1.225-.925L12 17.975l6.975-5.375 1.225.925L12 19.9Zm0-4.45L3.8 9.1 12 2.725 20.2 9.1 12 15.45Zm0-1.9 5.75-4.45L12 4.65 6.25 9.1 12 13.55Z" }) })), 'SvgLayer'); const Memo = memo(SvgLayer); export { Memo as default };