import { ColumnChart } from '@/components/charts/column-chart'; import { ChartContainer } from '@/components/charts/chart-container'; import { useColor } from '@/hooks/useColor'; import React from 'react'; const sampleData = [ { label: 'Mobile', value: 45, color: '#3b82f6' }, { label: 'Desktop', value: 35, color: '#10b981' }, { label: 'Tablet', value: 15, color: '#f59e0b' }, { label: 'Smart TV', value: 8, color: '#ef4444' }, { label: 'Wearable', value: 3, color: '#8b5cf6' }, ]; export function ColumnChartStyled() { return ( ); }