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) 747 B
import { jsx, jsxs } from 'react/jsx-runtime'; import * as React from 'react'; import { memo } from 'react'; import { createSvgIcon } from '@mui/material/utils'; const SvgPoint = 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: "M15.5 8.5h-7v7h7v-7ZM7 7v10h10V7H7Z" }), jsx("path", { d: "M11.25 21v-5h1.5v5h-1.5ZM11.25 8V3h1.5v5h-1.5ZM3 11.25h5v1.5H3v-1.5ZM16 11.25h5v1.5h-5v-1.5Z" })] })), 'SvgPoint'); const Memo = memo(SvgPoint); export { Memo as default };