UNPKG

@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.04 kB
import { jsx } from 'react/jsx-runtime'; import * as React from 'react'; import { memo } from 'react'; import { createSvgIcon } from '@mui/material/utils'; const SvgCircleWithThreePoints = createSvgIcon(React.createElement(React.Fragment, {}, jsx("circle", { cx: 4.86, cy: 7.88, r: 1.25 }), jsx("circle", { cx: 12, cy: 20.25, r: 1.25 }), jsx("circle", { cx: 19.14, cy: 7.88, r: 1.25 }), jsx("path", { d: "M20.52 10.26c-.35.2-.75.33-1.15.36.08.45.13.91.13 1.39 0 3.26-2.1 6.05-5.01 7.07.17.36.26.75.26 1.18 0 .11-.01.22-.02.33C18.36 19.42 21 16.01 21 12c0-.66-.07-1.3-.21-1.92-.08.06-.17.12-.27.18zM7.12 6.31A7.452 7.452 0 0 1 12 4.5c1.86 0 3.57.68 4.88 1.81a2.606 2.606 0 0 1 1.18-.96A8.967 8.967 0 0 0 12 3c-2.33 0-4.46.89-6.06 2.35.48.21.89.54 1.18.96zM9.25 20.25c0-.42.1-.82.26-1.18A7.508 7.508 0 0 1 4.5 12c0-.47.05-.94.13-1.38-.53-.04-1.02-.24-1.42-.54A8.69 8.69 0 0 0 3 12c0 4.01 2.64 7.42 6.27 8.58-.01-.11-.02-.22-.02-.33z" })), 'SvgCircleWithThreePoints'); const Memo = memo(SvgCircleWithThreePoints); export { Memo as default };