@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.15 kB
JavaScript
import { jsx } from 'react/jsx-runtime';
import * as React from 'react';
import { memo } from 'react';
import { createSvgIcon } from '@mui/material/utils';
const SvgArc = 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", { fillRule: "evenodd", d: "M17.135 5.276c-2.26.576-5.126 1.77-7.605 4.241-2.478 2.47-3.675 5.34-4.252 7.605a17.574 17.574 0 0 0-.48 2.795 12.876 12.876 0 0 0-.048 1.05v.012L4.002 21l-.75.021V21.011a3.438 3.438 0 0 1-.001-.087c0-.058 0-.14.003-.246.005-.212.018-.514.05-.892.066-.754.21-1.811.521-3.035.623-2.445 1.925-5.583 4.647-8.297 2.721-2.713 5.855-4.011 8.294-4.632a19.041 19.041 0 0 1 3.026-.52 14.31 14.31 0 0 1 1.134-.053 5.277 5.277 0 0 1 .087.001H21.021l-.021.75-.021.75h-.001a1.511 1.511 0 0 0-.059-.001c-.044 0-.113 0-.204.002-.181.005-.451.016-.794.046-.685.06-1.657.19-2.786.478Z", clipRule: "evenodd" }) })), 'SvgArc');
const Memo = memo(SvgArc);
export { Memo as default };