@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) • 449 B
JavaScript
import { jsx } from 'react/jsx-runtime';
import * as React from 'react';
import { memo } from 'react';
import { createSvgIcon } from '@mui/material/utils';
const SvgCompanies = createSvgIcon(React.createElement(React.Fragment, {}, jsx("path", { d: "M19 10c-1.1 0-2 .9-2 2h-1V3L3 8v13h18v-9c0-1.1-.9-2-2-2ZM5 9.37l9-3.46V12H9v7H5V9.37ZM19 19h-3v-3h-2v3h-3v-5h8v5Z" })), 'SvgCompanies');
const Memo = memo(SvgCompanies);
export { Memo as default };