From 8dd98fa9670a4c4c2ae1d784f360adbeb5f02d72 Mon Sep 17 00:00:00 2001 From: georgetrinickls Date: Tue, 13 May 2025 11:49:14 +0100 Subject: [PATCH] Create BalanceIcon.tsx --- src/components/ui/BalanceIcon.tsx | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/components/ui/BalanceIcon.tsx diff --git a/src/components/ui/BalanceIcon.tsx b/src/components/ui/BalanceIcon.tsx new file mode 100644 index 0000000..9bc3ba2 --- /dev/null +++ b/src/components/ui/BalanceIcon.tsx @@ -0,0 +1,29 @@ +import React from "react"; + +const BalanceIcon: React.FC = () => ( + + + + + £125.99 + + + + +); + +export default BalanceIcon;