import { Text, View, type ColorValue } from "react-native"; import { styles } from "@/styles/components/chartLegend"; interface Props { data: Array<{ label: string; color: ColorValue; }>; } export default function ChartLegend({ data }: Props) { return ( {data.map(({ label, color }) => ( {label} ))} ); }