diff --git a/src/__tests__/widgets/walletModal.test.tsx b/src/__tests__/widgets/walletModal.test.tsx index 27929ddb1..5cf5f8f3c 100644 --- a/src/__tests__/widgets/walletModal.test.tsx +++ b/src/__tests__/widgets/walletModal.test.tsx @@ -335,7 +335,7 @@ it("renders ConnectModal correctly", () => { + = (props) => { return ( - - + + ); }; diff --git a/src/components/Svg/Icons/Calculate.tsx b/src/components/Svg/Icons/Calculate.tsx index 8a92e17c5..87b41f11f 100644 --- a/src/components/Svg/Icons/Calculate.tsx +++ b/src/components/Svg/Icons/Calculate.tsx @@ -4,18 +4,18 @@ import { SvgProps } from "../types"; const Icon: React.FC = (props) => { return ( - + - - - - + + + + ); diff --git a/src/components/Svg/Icons/Minus.tsx b/src/components/Svg/Icons/Minus.tsx index c337c0030..884583b8b 100644 --- a/src/components/Svg/Icons/Minus.tsx +++ b/src/components/Svg/Icons/Minus.tsx @@ -4,8 +4,11 @@ import { SvgProps } from "../types"; const Icon: React.FC = (props) => { return ( - - + + ); };