import Button, {ButtonPropsWithoutAriaLabel} from 'sentry/components/button'; import Tooltip from 'sentry/components/tooltip'; import {t} from 'sentry/locale'; import {IntegrationWithConfig} from 'sentry/types'; import AddIntegration from './addIntegration'; interface AddIntegrationButtonProps extends Omit, Pick< React.ComponentProps, 'provider' | 'organization' | 'analyticsParams' | 'modalParams' > { onAddIntegration: (data: IntegrationWithConfig) => void; buttonText?: string; reinstall?: boolean; } export function AddIntegrationButton({ provider, buttonText, onAddIntegration, organization, reinstall, analyticsParams, modalParams, ...buttonProps }: AddIntegrationButtonProps) { const label = buttonText ?? (reinstall ? t('Enable') : t('Add %s', provider.metadata.noun)); return ( {onClick => ( )} ); }