@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) • 427 B
JavaScript
import { jsx } from 'react/jsx-runtime';
import * as React from 'react';
import { memo } from 'react';
import { createSvgIcon } from '@mui/material/utils';
const SvgParallelThreeD = createSvgIcon(React.createElement(React.Fragment, {}, jsx("path", { d: "M9.78 13.26 4 16.27l6.5-11.26L16.28 2zM13.5 18.99 7.72 22l6.5-11.26L20 7.73z" })), 'SvgParallelThreeD');
const Memo = memo(SvgParallelThreeD);
export { Memo as default };