import { ChartColumn, ChartLine } from 'lucide-react'; import React from 'react'; import { __ } from '@wordpress/i18n'; import { ChartPresentation } from './useChartPresentation'; import { AnimatedTabs } from '@/components/ui/animated-tabs'; type Props = { value: ChartPresentation; onValueChange: ( value: ChartPresentation ) => void; }; const OPTIONS: Array<{ value: ChartPresentation; label: React.ReactNode }> = [ { value: 'line', label: ( ), }, { value: 'bar', label: ( ), }, ]; export function ChartStyleControl( { value, onValueChange }: Props ) { return ( ); }