mirror of https://github.com/portainer/portainer
				
				
				
			
		
			
				
	
	
		
			13 lines
		
	
	
		
			391 B
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			391 B
		
	
	
	
		
			TypeScript
		
	
	
import { Badge } from '@@/Badge';
 | 
						|
import { TooltipWithChildren } from '@@/Tip/TooltipWithChildren';
 | 
						|
 | 
						|
export function RestrictedSecretBadge() {
 | 
						|
  return (
 | 
						|
    <TooltipWithChildren message="You can only view details of secrets you've created yourself in Portainer">
 | 
						|
      <div className="min-w-min">
 | 
						|
        <Badge type="warn">Restricted</Badge>
 | 
						|
      </div>
 | 
						|
    </TooltipWithChildren>
 | 
						|
  );
 | 
						|
}
 |