@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.41 kB
JavaScript
import { jsx } from 'react/jsx-runtime';
import * as React from 'react';
import { memo } from 'react';
import { createSvgIcon } from '@mui/material/utils';
const SvgProcess = 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: "M8.525 18.825c-1.767-.683-3.212-1.817-4.337-3.4-1.125-1.583-1.688-3.383-1.688-5.4 0-.483.033-.958.1-1.425.067-.467.175-.925.325-1.375L1.25 8.2.525 6.9 4.85 4.4l2.5 4.325-1.3.75L4.625 7c-.2.483-.35.975-.45 1.475-.1.5-.15 1.017-.15 1.55 0 1.7.488 3.233 1.463 4.6.975 1.367 2.245 2.325 3.812 2.875l-.775 1.325ZM15.35 6.5V5h2.85a7.666 7.666 0 0 0-2.75-2.2A7.914 7.914 0 0 0 12 2.025c-.983 0-1.908.167-2.775.5A8.295 8.295 0 0 0 6.875 3.9L6.1 2.575a10.131 10.131 0 0 1 2.712-1.5 9.05 9.05 0 0 1 3.163-.55c1.317 0 2.567.254 3.75.762a9.356 9.356 0 0 1 3.125 2.188V1.5h1.5v5h-5Zm-.25 14.95-4.325-2.5 2.5-4.325 1.275.75-1.475 2.575c1.967-.283 3.608-1.171 4.925-2.663 1.317-1.491 1.975-3.245 1.975-5.262 0-.267-.012-.525-.037-.775-.025-.25-.071-.5-.138-.75h1.525a7.491 7.491 0 0 1 .15 1.5c0 2.217-.675 4.179-2.025 5.887-1.35 1.709-3.092 2.813-5.225 3.313l1.625.95-.75 1.3Z" }) })), 'SvgProcess');
const Memo = memo(SvgProcess);
export { Memo as default };