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.19 kB
import { jsx, jsxs } from 'react/jsx-runtime'; import * as React from 'react'; import { memo } from 'react'; import { createSvgIcon } from '@mui/material/utils'; const SvgArcPoint = 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", { d: "M2.5 18.5h3v3h-3zM6.5 6.5h3v3h-3zM18.5 2.5h3v3h-3z" }), jsx("path", { fillRule: "evenodd", d: "M15.743 5.036c-2.357.462-5.164 1.445-7.213 3.494-2.046 2.046-3.005 4.873-3.443 7.256a21.494 21.494 0 0 0-.332 2.988 17.538 17.538 0 0 0-.007 1.172v.015L4 20l-.749.039v-.016l-.001-.013a7.126 7.126 0 0 1-.008-.337c-.003-.228-.001-.555.015-.96.032-.807.123-1.931.356-3.199.462-2.517 1.502-5.69 3.857-8.044 2.35-2.351 5.494-3.418 7.986-3.906a22.905 22.905 0 0 1 3.164-.391A18.839 18.839 0 0 1 19.9 3.15h.029l-.03.75-.03.75h-.006a2.44 2.44 0 0 0-.064-.002l-.23-.002c-.201 0-.499.005-.871.025-.745.04-1.784.136-2.955.365Z", clipRule: "evenodd" })] })), 'SvgArcPoint'); const Memo = memo(SvgArcPoint); export { Memo as default };