@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 SvgSync = 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: "M4.325 19.675v-1.5H7.25l-.725-.7c-.817-.767-1.4-1.621-1.75-2.563a8.089 8.089 0 0 1-.525-2.837c0-1.733.504-3.283 1.513-4.65C6.771 6.058 8.1 5.117 9.75 4.6v1.575a6.125 6.125 0 0 0-2.9 2.313 6.222 6.222 0 0 0-1.1 3.587c0 .783.15 1.542.45 2.275.3.733.758 1.417 1.375 2.05l.625.625V14.3h1.5v5.375H4.325Zm9.925-.275v-1.575a6.125 6.125 0 0 0 2.9-2.313 6.222 6.222 0 0 0 1.1-3.587c0-.783-.15-1.542-.45-2.275-.3-.733-.758-1.417-1.375-2.05l-.625-.625V9.7h-1.5V4.325h5.375v1.5H16.75l.725.7c.8.783 1.379 1.642 1.737 2.575a7.82 7.82 0 0 1 .538 2.825c0 1.733-.504 3.283-1.512 4.65-1.009 1.367-2.338 2.308-3.988 2.825Z" }) })), 'SvgSync');
const Memo = memo(SvgSync);
export { Memo as default };