@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.3 kB
JavaScript
import { jsx, jsxs } from 'react/jsx-runtime';
import * as React from 'react';
import { memo } from 'react';
import { createSvgIcon } from '@mui/material/utils';
const SvgCurvePoint = 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-3v-3ZM18.5 2.5h3v3h-3v-3ZM10.5 10.5h3v3h-3v-3Z" }), jsx("path", { fillRule: "evenodd", d: "M13.753 7.317c-.602 1.028-1.021 2.512-1.021 4.668 0 2.38-.598 4.165-1.548 5.485-.948 1.316-2.205 2.112-3.43 2.589-1.222.475-2.431.64-3.325.69a11.601 11.601 0 0 1-1.405-.008 5.107 5.107 0 0 1-.088-.007l-.025-.003h-.012l.082-.746.083-.746h.001l.013.002c.013 0 .034.003.063.005a10.1 10.1 0 0 0 1.205.006c.794-.045 1.835-.191 2.864-.591 1.024-.399 2.017-1.04 2.757-2.068.737-1.023 1.264-2.488 1.264-4.608 0-2.345.456-4.11 1.229-5.427a6.299 6.299 0 0 1 2.97-2.635c1.862-.815 3.936-.741 5.058-.701.195.007.362.013.494.013v1.5c-.186 0-.398-.007-.629-.014-1.155-.035-2.81-.085-4.32.576a4.8 4.8 0 0 0-2.28 2.02Z", clipRule: "evenodd" })] })), 'SvgCurvePoint');
const Memo = memo(SvgCurvePoint);
export { Memo as default };