import Access from 'sentry/components/acl/access'; import {Alert} from 'sentry/components/alert'; import {t} from 'sentry/locale'; import type {Project, Scope, Team} from 'sentry/types'; interface Props extends React.ComponentPropsWithoutRef { access?: Scope[]; project?: Project | null | undefined; team?: Team | null | undefined; } export const permissionAlertText = t( 'These settings can only be edited by users with the organization-level owner, manager, or team-level admin roles.' ); function PermissionAlert({access = ['project:write'], project, team, ...props}: Props) { return ( {({hasAccess}) => !hasAccess && ( {permissionAlertText} ) } ); } export default PermissionAlert;