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: (
{ __( 'Line chart', 'altis' ) }
),
},
{
value: 'bar',
label: (
{ __( 'Bar chart', 'altis' ) }
),
},
];
export function ChartStyleControl( { value, onValueChange }: Props ) {
return (
);
}