Skip to content

Commit

Permalink
fixed some icon imports
Browse files Browse the repository at this point in the history
  • Loading branch information
arietrouw committed Oct 4, 2023
1 parent fa7410f commit 798614e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import CancelRoundedIcon from '@mui/icons-material/CancelRounded'
import { CancelRounded } from '@mui/icons-material'
import { IconButton } from '@mui/material'
import { FlexBoxProps, FlexGrowCol, FlexRow } from '@xylabs/react-flexbox'

Expand All @@ -11,7 +11,7 @@ export const DetailsFlexbox: React.FC<DetailsFlexboxProps> = ({ children, onClos
<FlexGrowCol alignItems="end" justifyContent="start" id="module-detail" width="100%" p={2} gap={2}>
<FlexRow justifyContent="end">
<IconButton onClick={onClose} size={'small'}>
<CancelRoundedIcon />
<CancelRounded />
</IconButton>
</FlexRow>
{children}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import CancelRoundedIcon from '@mui/icons-material/CancelRounded'
import { CancelRounded } from '@mui/icons-material'
import { Button, Card, CardActions, CardHeader, IconButton, Paper, Popper, PopperProps, styled } from '@mui/material'
import { Identicon } from '@xylabs/react-identicon'
import { NodeSingular } from 'cytoscape'
Expand All @@ -21,7 +21,7 @@ export const ModuleHoverPopper: React.FC<ModuleHoverPopperProps> = ({ anchorEl,
action={
onClose ? (
<IconButton size="small" onClick={onClose}>
<CancelRoundedIcon />
<CancelRounded />
</IconButton>
) : null
}
Expand Down

0 comments on commit 798614e

Please sign in to comment.