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/).

12 lines (9 loc) 1.09 kB
import { jsx } from 'react/jsx-runtime'; import * as React from 'react'; import { memo } from 'react'; import { createSvgIcon } from '@mui/material/utils'; const SvgRotate = 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: "m8.77 19.365-1.055-1.053 1.943-1.974c-2.037-.27-3.74-.804-5.107-1.6C3.184 13.94 2.5 13.027 2.5 12c0-1.23.918-2.287 2.753-3.172C7.088 7.943 9.337 7.5 12 7.5c2.663 0 4.912.443 6.747 1.328S21.5 10.77 21.5 12c0 .88-.505 1.686-1.514 2.42-1.009.732-2.337 1.286-3.986 1.66v-1.53c1.283-.333 2.27-.746 2.962-1.238C19.654 12.822 20 12.383 20 12c0-.553-.712-1.19-2.137-1.914S14.483 9 12 9c-2.483 0-4.438.362-5.863 1.086C4.712 10.809 4 11.447 4 12c0 .438.49.945 1.467 1.52.979.574 2.283.993 3.914 1.257l-1.666-1.665 1.054-1.054 3.654 3.653-3.654 3.654Z" }) })), 'SvgRotate'); const Memo = memo(SvgRotate); export { Memo as default };