@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/).
10 lines (7 loc) • 649 B
JavaScript
import { jsx } from 'react/jsx-runtime';
import * as React from 'react';
import { memo } from 'react';
import { createSvgIcon } from '@mui/material/utils';
const SvgProbe = createSvgIcon(React.createElement(React.Fragment, {}, jsx("path", { fillRule: "evenodd", d: "M9.25 2h5.5v8.2l-2 3.5v3.928a2.249 2.249 0 0 1 1.5 2.122A2.248 2.248 0 0 1 12 22a2.248 2.248 0 0 1-2.25-2.25c0-.981.625-1.814 1.5-2.122v-3.929l-2-3.5V2ZM12 11.988l1.25-2.187V3.5h-2.5v6.3L12 11.989ZM12 19a.748.748 0 0 0-.75.75c0 .416.334.75.75.75s.75-.334.75-.75A.748.748 0 0 0 12 19Z", clipRule: "evenodd" })), 'SvgProbe');
const Memo = memo(SvgProbe);
export { Memo as default };