import React from 'react'; import { __ } from '@wordpress/i18n'; import { PRIOR_SERIES_COLOR } from './TimeSeriesPlot'; import { cn } from '@/lib/utils'; type Props = { enabled: boolean; onEnabledChange: ( enabled: boolean ) => void; }; // One-segment sibling of AnimatedTabs (ChartStyleControl / resolution tabs): // same !h-9 !rounded-lg !bg-muted !p-1 track, but with a single button that // lifts into the raised !bg-background pill when enabled instead of sliding // between options. export function CompareControl( { enabled, onEnabledChange }: Props ) { return (
); }