@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) • 886 B
JavaScript
import { jsx } from 'react/jsx-runtime';
import * as React from 'react';
import { memo } from 'react';
import { createSvgIcon } from '@mui/material/utils';
const SvgPan = 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.65-3.9-3.9 1.075-1.075 2.075 2.1V14.25h1.5l-.025 4.5 2.1-2.075L15.9 17.75l-3.9 3.9ZM6.25 15.9 2.35 12l3.875-3.9L7.3 9.175 5.225 11.25H9.75v1.5h-4.5l2.075 2.075L6.25 15.9Zm11.5 0-1.075-1.075 2.1-2.075H14.25v-1.5l4.5.025-2.075-2.1L17.75 8.1l3.9 3.9-3.9 3.9Zm-6.5-6.15V5.225l-2.075 2.1L8.1 6.25l3.9-3.9 3.9 3.9-1.075 1.075-2.075-2.1V9.75h-1.5Z" }) })), 'SvgPan');
const Memo = memo(SvgPan);
export { Memo as default };