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) 484 B
import { jsx } from 'react/jsx-runtime'; import * as React from 'react'; import { memo } from 'react'; import { createSvgIcon } from '@mui/material/utils'; const SvgGroupSmall = createSvgIcon(React.createElement(React.Fragment, {}, jsx("path", { fill: "none", stroke: "#000", strokeMiterlimit: 10, strokeWidth: 1.029, d: "M12 17H3V8h9v9Zm5-14H8v9h9V3Z" }), jsx("path", { d: "M12.5 7.5h-5v5h5v-5Z" })), 'SvgGroupSmall'); const Memo = memo(SvgGroupSmall); export { Memo as default };