@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.02 kB
JavaScript
import { jsx } from 'react/jsx-runtime';
import * as React from 'react';
import { memo } from 'react';
import { createSvgIcon } from '@mui/material/utils';
const SvgMove = 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 14.5c-.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.725Zm0 6.8-3.9-3.9 1.05-1.05L12 19.175l2.85-2.825 1.05 1.05-3.9 3.9Zm-5.4-5.4L2.7 12l3.9-3.9 1.05 1.05L4.825 12l2.825 2.85L6.6 15.9Zm2.55-8.25L8.1 6.6 12 2.7l3.9 3.9-1.05 1.05L12 4.825 9.15 7.65Zm8.25 8.25-1.05-1.05L19.175 12 16.35 9.15 17.4 8.1l3.9 3.9-3.9 3.9Z" }) })), 'SvgMove');
const Memo = memo(SvgMove);
export { Memo as default };