home, subscription and other fixes

This commit is contained in:
Thomas Demirdjian
2025-11-06 17:33:07 +01:00
parent 5f777f3b6d
commit 4365f1e46d
31 changed files with 1579 additions and 348 deletions
+21
View File
@@ -0,0 +1,21 @@
import React from "react";
import { Image } from "react-native";
import { icons } from "../assets";
const CoinIcon = ({ size = 22, style }) => {
return (
<Image
source={icons.coin}
style={[
{
width: size,
height: size,
resizeMode: "contain",
},
style,
]}
/>
);
};
export default CoinIcon;