import React from "react"
import { Divider, Text, Icon, } from "@chakra-ui/react"
import { HBetween, HFStack } from "./base"
import { VPanel } from "./Panels"
export const PoolData = ({ icon, title, data }) => {
const TL = ({ title }) => (
{title}
)
const TR = ({ value, ...rest }) => (
{value}
)
return (
{icon && }
{title}
{
data && data.map((d, index) => (
))
}
)
}