import React from 'react'; import { OrgRole } from '@grafana/data'; import { Select } from '@grafana/ui'; interface Props { value: OrgRole; disabled?: boolean; 'aria-label'?: string; inputId?: string; onChange: (role: OrgRole) => void; autoFocus?: boolean; width?: number | 'auto'; } const basicRoles = Object.values(OrgRole).filter((r) => r !== OrgRole.None); const options = basicRoles.map((r) => ({ label: r, value: r })); export function OrgRolePicker({ value, onChange, 'aria-label': ariaLabel, inputId, autoFocus, ...restProps }: Props) { return (