import { ChartContainer } from '@/components/charts/chart-container'; import { LineChart } from '@/components/charts/line-chart'; import { useColor } from '@/hooks/useColor'; import React from 'react'; const sampleData = [ { x: 'Q1', y: 65, label: 'Quarter 1' }, { x: 'Q2', y: 80, label: 'Quarter 2' }, { x: 'Q3', y: 75, label: 'Quarter 3' }, { x: 'Q4', y: 95, label: 'Quarter 4' }, ]; export function ChartContainerStyled() { const backgroundColor = useColor('indigo'); return ( ); }