import React from 'react'; import { SelectableValue } from '@grafana/data'; import { ValuePicker } from '@grafana/ui'; export type AddLayerButtonProps = { onChange: (sel: SelectableValue) => void; options: Array>; label: string; }; export const AddLayerButton = ({ onChange, options, label }: AddLayerButtonProps) => { return ( ); };