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.06 kB
import { jsx } from 'react/jsx-runtime'; import * as React from 'react'; import { memo } from 'react'; import { createSvgIcon } from '@mui/material/utils'; const SvgCurve = 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", { fillRule: "evenodd", d: "M16.317 4.779C14.585 5.753 12.95 7.733 12.95 12c0 2.381-.598 4.217-1.532 5.62-.932 1.397-2.169 2.319-3.383 2.926a11.81 11.81 0 0 1-3.306 1.053 11.79 11.79 0 0 1-1.403.148 5.13 5.13 0 0 1-.114.003h-.011L3.2 21v-.75h.014c.012 0 .033 0 .062-.002a10.28 10.28 0 0 0 1.207-.129 10.313 10.313 0 0 0 2.881-.915c1.036-.518 2.05-1.283 2.806-2.417.752-1.129 1.28-2.668 1.28-4.787 0-4.733 1.865-7.253 4.132-8.529 2.172-1.221 4.584-1.221 5.594-1.221h.024v1.5c-1.005 0-3.071.01-4.883 1.029Z", clipRule: "evenodd" }) })), 'SvgCurve'); const Memo = memo(SvgCurve); export { Memo as default };