@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) • 854 B
JavaScript
import { jsx } from 'react/jsx-runtime';
import * as React from 'react';
import { memo } from 'react';
import { createSvgIcon } from '@mui/material/utils';
const SvgCompare = createSvgIcon(React.createElement(React.Fragment, {}, jsx("path", { fill: "none", stroke: "#000", strokeMiterlimit: 10, strokeWidth: 1.5, d: "M4.6 20.5 20.5 4.6" }), jsx("path", { d: "M15.2 13.1h2.4c1.1 0 1.9.2 2.4.5s.8.8.8 1.5c0 .5-.1.9-.3 1.2s-.5.5-.9.5v.1c.5.1.9.3 1.1.6.2.3.3.7.3 1.2 0 .7-.3 1.3-.8 1.7-.5.4-1.2.6-2.1.6h-2.9v-7.9zm1.6 3.2h1c.5 0 .8-.1 1-.2.2-.1.3-.4.3-.7 0-.3-.1-.5-.3-.6-.2-.1-.6-.2-1-.2h-.9v1.7zm0 1.3v2h1.1c.5 0 .8-.1 1-.3.2-.2.3-.4.3-.8 0-.7-.5-1-1.4-1h-1zM8.8 10.9 8.2 9H5.4l-.6 1.9H3L5.8 3h2l2.8 7.9H8.8zm-1-3.3C7.3 5.9 7 5 6.9 4.7c0-.2-.1-.4-.1-.5-.1.5-.5 1.6-1 3.4h2z" })), 'SvgCompare');
const Memo = memo(SvgCompare);
export { Memo as default };