home, subscription and other fixes
This commit is contained in:
@@ -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;
|
||||
Reference in New Issue
Block a user