1import { deprecationWarning } from '@grafana/data'; 2import { ColorPickerProps } from './ColorPickerPopover'; 3 4export const warnAboutColorPickerPropsDeprecation = (componentName: string, props: ColorPickerProps) => { 5 const { onColorChange } = props; 6 if (onColorChange) { 7 deprecationWarning(componentName, 'onColorChange', 'onChange'); 8 } 9}; 10