import * as shape from 'd3-shape'; import React, {useContext} from 'react'; import {View} from 'react-native'; import {Grid, LineChart, XAxis, YAxis} from 'react-native-svg-charts'; import {CustomTheme} from './App'; import {MARGIN, PADDING} from './constants'; import Set from './set'; export default function Chart({ yData, xFormat, xData, yFormat, }: { yData: number[]; xData: Set[]; xFormat: (value: any, index: number) => string; yFormat: (value: any) => string; }) { const {color} = useContext(CustomTheme); const axesSvg = {fontSize: 10, fill: 'grey'}; const verticalContentInset = {top: 10, bottom: 10}; const xAxisHeight = 30; return ( <> ); }