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.03 kB
import { jsx } from 'react/jsx-runtime'; import * as React from 'react'; import { memo } from 'react'; import { createSvgIcon } from '@mui/material/utils'; const SvgAssembly = 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: "M12 16.75c-1.183 0-2.208-.379-3.075-1.137A4.905 4.905 0 0 1 7.3 12.75H2.5v-1.5h4.8a4.905 4.905 0 0 1 1.625-2.863C9.792 7.629 10.817 7.25 12 7.25c1.183 0 2.213.379 3.088 1.137A4.76 4.76 0 0 1 16.7 11.25h4.8v1.5h-4.8a4.76 4.76 0 0 1-1.612 2.863c-.875.758-1.905 1.137-3.088 1.137Zm0-1.5c.9 0 1.667-.317 2.3-.95.633-.633.95-1.4.95-2.3 0-.9-.317-1.667-.95-2.3a3.133 3.133 0 0 0-2.3-.95c-.9 0-1.667.317-2.3.95-.633.633-.95 1.4-.95 2.3 0 .9.317 1.667.95 2.3.633.633 1.4.95 2.3.95Z" }) })), 'SvgAssembly'); const Memo = memo(SvgAssembly); export { Memo as default };