@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.34 kB
JavaScript
import { jsx } from 'react/jsx-runtime';
import * as React from 'react';
import { memo } from 'react';
import { createSvgIcon } from '@mui/material/utils';
const SvgRevolve = 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: "M12 21.75c-2.267 0-4.283-.7-6.05-2.1-1.767-1.4-2.908-3.2-3.425-5.4H4.05c.517 1.783 1.504 3.229 2.963 4.337 1.458 1.109 3.12 1.663 4.987 1.663 1.55 0 2.98-.408 4.288-1.225a8.766 8.766 0 0 0 3.087-3.275H16.25v-1.5h5.5v5.5h-1.5v-2.575a10.495 10.495 0 0 1-3.562 3.337A9.278 9.278 0 0 1 12 21.75Zm0-7.25c-.7 0-1.292-.242-1.775-.725C9.742 13.292 9.5 12.7 9.5 12s.242-1.292.725-1.775C10.708 9.742 11.3 9.5 12 9.5s1.292.242 1.775.725c.483.483.725 1.075.725 1.775s-.242 1.292-.725 1.775c-.483.483-1.075.725-1.775.725ZM2.25 9.75v-5.5h1.5v2.575c.933-1.4 2.12-2.513 3.562-3.338A9.284 9.284 0 0 1 12 2.25c2.267 0 4.283.7 6.05 2.1 1.767 1.4 2.908 3.2 3.425 5.4H19.95c-.517-1.783-1.504-3.23-2.962-4.338C15.529 4.304 13.867 3.75 12 3.75a7.94 7.94 0 0 0-4.287 1.225A8.764 8.764 0 0 0 4.625 8.25H7.75v1.5h-5.5Z" }) })), 'SvgRevolve');
const Memo = memo(SvgRevolve);
export { Memo as default };