import React from 'react' import { VStack, Image, Text, HStack, Button, Flex, Slider, SliderTrack, SliderFilledTrack } from "@chakra-ui/react" import { Images } from '../data' const Row = ({ children }) => { return ( {children} ) } const CardRow = ({ title, value, compond = false }) => { return ( {title} { compond && (Compound Interest) } { compond ? {value} : {value} } ) } export const FarmCoinCard = ({ index, icon, symbol, apy, deposited, vl, remaining, loading = false, isNew = false, authorized = false, onWithdrawal = null, onMining = null }) => { return ( {symbol} {symbol} Harvest {symbol} { isNew && new } ) }