diff --git a/packages/grafana-ui/src/components/Forms/RadioButtonList/RadioButtonDot.tsx b/packages/grafana-ui/src/components/Forms/RadioButtonList/RadioButtonDot.tsx index 6567ae9b3ad..23616fa1f5a 100644 --- a/packages/grafana-ui/src/components/Forms/RadioButtonList/RadioButtonDot.tsx +++ b/packages/grafana-ui/src/components/Forms/RadioButtonList/RadioButtonDot.tsx @@ -5,7 +5,8 @@ import { GrafanaTheme2 } from '@grafana/data'; import { useStyles2 } from '../../../themes'; -export interface RadioButtonDotProps { +export interface RadioButtonDotProps + extends Omit, 'label' | 'value' | 'onChange' | 'type'> { id: string; name: string; checked?: boolean; @@ -25,12 +26,14 @@ export const RadioButtonDot = ({ disabled, description, onChange, + ...props }: RadioButtonDotProps) => { const styles = useStyles2(getStyles); return (