@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) • 1.15 kB
JavaScript
import { jsx } from 'react/jsx-runtime';
import * as React from 'react';
import { memo } from 'react';
import { createSvgIcon } from '@mui/material/utils';
const SvgCircleWithFourPoints = createSvgIcon(React.createElement(React.Fragment, {}, jsx("circle", { cx: 6.17, cy: 6.17, r: 1.25 }), jsx("circle", { cx: 6.17, cy: 17.83, r: 1.25 }), jsx("circle", { cx: 17.83, cy: 17.83, r: 1.25 }), jsx("circle", { cx: 17.83, cy: 6.17, r: 1.25 }), jsx("path", { d: "M15.24 18.76c-.98.47-2.08.74-3.24.74a7.48 7.48 0 0 1-3.24-.74c-.18.49-.49.92-.89 1.23C9.1 20.64 10.51 21 12 21s2.9-.36 4.13-1.01c-.4-.31-.71-.74-.89-1.23zM19.99 7.87c-.32.4-.74.71-1.23.89.47.98.74 2.08.74 3.24 0 1.16-.27 2.26-.74 3.24.49.18.92.49 1.23.89C20.64 14.9 21 13.49 21 12s-.36-2.9-1.01-4.13zM8.76 5.24A7.48 7.48 0 0 1 12 4.5c1.16 0 2.26.27 3.24.74.18-.49.49-.92.89-1.23C14.9 3.36 13.49 3 12 3s-2.9.36-4.13 1.01c.4.31.71.74.89 1.23zM5.24 15.24A7.48 7.48 0 0 1 4.5 12c0-1.16.27-2.26.74-3.24a2.76 2.76 0 0 1-1.23-.89C3.36 9.1 3 10.51 3 12s.36 2.9 1.01 4.13c.31-.4.74-.71 1.23-.89z" })), 'SvgCircleWithFourPoints');
const Memo = memo(SvgCircleWithFourPoints);
export { Memo as default };