@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) • 548 B
JavaScript
import { jsx } from 'react/jsx-runtime';
import * as React from 'react';
import { memo } from 'react';
import { createSvgIcon } from '@mui/material/utils';
const SvgSelect = createSvgIcon(React.createElement(React.Fragment, {}, jsx("g", { clipPath: "url(#a)", children: jsx("path", { d: "m3.303 3.303 7.63 18.237h1.004l2.68-6.923 6.923-2.68v-1.004L3.303 3.303Z" }) }), jsx("defs", { children: jsx("clipPath", { id: "a", children: jsx("path", { d: "M0 0h24v24H0z" }) }) })), 'SvgSelect');
const Memo = memo(SvgSelect);
export { Memo as default };