Skip to content

Commit

Permalink
fixing build error
Browse files Browse the repository at this point in the history
  • Loading branch information
Marchand-Nicolas committed Sep 27, 2023
1 parent 2ec1810 commit 5bb6284
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/UI/iconsComponents/icons/closeIcon.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { FunctionComponent } from "react";

const CloseIcon: FunctionComponent<IconProps> = ({ width = 24 }) => {
const CloseIcon: FunctionComponent<IconProps> = ({ width }) => {
return (
<svg viewBox="0 0 24 24" width={width} height={width}>
<path
Expand Down
2 changes: 1 addition & 1 deletion components/UI/modalWallet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const ModalWallet: FunctionComponent<ModalWalletProps> = ({
>
<div className={styles.menu}>
<button className={styles.menu_close} onClick={closeModal}>
<CloseIcon />
<CloseIcon width="24" />
</button>
<div className={styles.menu_title}>
<div className={styles.menu_title}>
Expand Down

0 comments on commit 5bb6284

Please sign in to comment.