@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) • 649 B
JavaScript
import { jsx } from 'react/jsx-runtime';
import * as React from 'react';
import { memo } from 'react';
import { createSvgIcon } from '@mui/material/utils';
const SvgFrustumThreeD = createSvgIcon(React.createElement(React.Fragment, {}, jsx("path", { d: "M20.89 15.17S17.56 8 16.5 5.75C15.85 4.38 14.49 3 12 3S8.14 4.37 7.5 5.75C6.45 8 3.11 15.17 3.11 15.17 2.37 17.28 5.38 21 12 21s9.63-3.72 8.89-5.83zm-6.01-9.26C14.41 6.47 13.52 7 12 7c-1.52 0-2.42-.53-2.88-1.1a.255.255 0 0 1 0-.31C9.58 5.03 10.48 4.5 12 4.5c1.52 0 2.41.53 2.88 1.09.08.09.08.23 0 .32z" })), 'SvgFrustumThreeD');
const Memo = memo(SvgFrustumThreeD);
export { Memo as default };