mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-11-26 02:36:20 -05:00
wip: WithdrawDialog migrated to Tauri IPC
This commit is contained in:
parent
47821cbe79
commit
3d16ff6d5c
118 changed files with 1779 additions and 1868 deletions
|
|
@ -1,18 +1,18 @@
|
|||
import { Box, makeStyles } from '@material-ui/core';
|
||||
import IpcInvokeButton from 'renderer/components/IpcInvokeButton';
|
||||
import { useAppSelector } from 'store/hooks';
|
||||
import StopIcon from '@material-ui/icons/Stop';
|
||||
import PlayArrowIcon from '@material-ui/icons/PlayArrow';
|
||||
import { RpcProcessStateType } from 'models/rpcModel';
|
||||
import InfoBox from '../../modal/swap/InfoBox';
|
||||
import CliLogsBox from '../../other/RenderedCliLog';
|
||||
import FolderOpenIcon from '@material-ui/icons/FolderOpen';
|
||||
import { Box, makeStyles } from "@material-ui/core";
|
||||
import IpcInvokeButton from "renderer/components/IpcInvokeButton";
|
||||
import { useAppSelector } from "store/hooks";
|
||||
import StopIcon from "@material-ui/icons/Stop";
|
||||
import PlayArrowIcon from "@material-ui/icons/PlayArrow";
|
||||
import { RpcProcessStateType } from "models/rpcModel";
|
||||
import InfoBox from "../../modal/swap/InfoBox";
|
||||
import CliLogsBox from "../../other/RenderedCliLog";
|
||||
import FolderOpenIcon from "@material-ui/icons/FolderOpen";
|
||||
|
||||
const useStyles = makeStyles((theme) => ({
|
||||
actionsOuter: {
|
||||
display: 'flex',
|
||||
display: "flex",
|
||||
gap: theme.spacing(1),
|
||||
alignItems: 'center',
|
||||
alignItems: "center",
|
||||
},
|
||||
}));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue