Skip to content

Commit

Permalink
Uses default import for @mui/icons-material
Browse files Browse the repository at this point in the history
  • Loading branch information
matias-pinata committed Jan 18, 2023
1 parent ec9451c commit 5406167
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion packages/ui/material-ui/src/WalletDialog.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import { Close as CloseIcon, ExpandLess as CollapseIcon, ExpandMore as ExpandIcon } from '@mui/icons-material';
import CloseIcon from '@mui/icons-material/Close';
import CollapseIcon from '@mui/icons-material/ExpandLess';
import ExpandIcon from '@mui/icons-material/ExpandMore';

import type { DialogProps, Theme } from '@mui/material';
import {
Button,
Expand Down
5 changes: 4 additions & 1 deletion packages/ui/material-ui/src/WalletMultiButton.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import { FileCopy as CopyIcon, LinkOff as DisconnectIcon, SwapHoriz as SwitchIcon } from '@mui/icons-material';
import CopyIcon from '@mui/icons-material/FileCopy';
import DisconnectIcon from '@mui/icons-material/LinkOff';
import SwitchIcon from '@mui/icons-material/SwapHoriz';

import type { ButtonProps, Theme } from '@mui/material';
import { Button, Collapse, Fade, ListItemIcon, Menu, MenuItem, styled } from '@mui/material';
import { useWallet } from '@solana/wallet-adapter-react';
Expand Down

0 comments on commit 5406167

Please sign in to comment.