import type {ReactNode} from 'react'; import Access from 'sentry/components/acl/access'; import {Alert} from 'sentry/components/alert'; import {t} from 'sentry/locale'; import type {Scope} from 'sentry/types'; type Props = React.ComponentPropsWithoutRef & { access?: Scope[]; message?: ReactNode; }; function PermissionAlert({ access = ['org:write'], message = t( 'These settings can only be edited by users with the organization owner or manager role.' ), ...props }: Props) { return ( {({hasAccess}) => !hasAccess && ( {message} ) } ); } export default PermissionAlert;