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) 410 B
import { jsx } from 'react/jsx-runtime'; import * as React from 'react'; import { memo } from 'react'; import { createSvgIcon } from '@mui/material/utils'; const SvgConeThreeD = createSvgIcon(React.createElement(React.Fragment, {}, jsx("path", { d: "M12 22c5.89 0 8.56-2.87 7.9-4.5L12 2 4.1 17.5C3.44 19.13 6.11 22 12 22z" })), 'SvgConeThreeD'); const Memo = memo(SvgConeThreeD); export { Memo as default };