@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) • 692 B
JavaScript
import { jsx } from 'react/jsx-runtime';
import * as React from 'react';
import { memo } from 'react';
import { createSvgIcon } from '@mui/material/utils';
const SvgDsr = createSvgIcon(React.createElement(React.Fragment, {}, jsx("path", { d: "M9 5c-3.86 0-7 3.14-7 7a7.008 7.008 0 0 0 8.06 6.92C7.85 17.35 6.5 14.79 6.5 12s1.35-5.35 3.56-6.92C9.71 5.03 9.36 5 9 5z" }), jsx("path", { d: "M12 5.67C9.56 6.83 8 9.28 8 12s1.56 5.17 4 6.33c2.44-1.16 4-3.61 4-6.33s-1.56-5.17-4-6.33z" }), jsx("path", { d: "M13.94 18.92A7.008 7.008 0 0 0 22 12a7.008 7.008 0 0 0-8.06-6.92C16.15 6.65 17.5 9.21 17.5 12s-1.35 5.35-3.56 6.92z" })), 'SvgDsr');
const Memo = memo(SvgDsr);
export { Memo as default };