Web Component Usage
  Bolt Menu is a web component, you can simply use <bolt-menu> in the markup to make it render.
  
    
            
            
      
      
              
  
    Menu item 1
  
  
    Menu item 2
  
  
    Menu item 3
  
      
      
    
    
       
    
   
  
    <bolt-menu>
  <bolt-menu-item>
    Menu item 1
  </bolt-menu-item>
  <bolt-menu-item>
    Menu item 2
  </bolt-menu-item>
  <bolt-menu-item>
    Menu item 3
  </bolt-menu-item>
</bolt-menu>
  
Prop Usage
  Configure the menu with the properties specified in the schema.
  
    
            
            
      
      
              
  Menu Options
  
    Menu item 1 is a button
  
  
    Menu item 2 is a link
  
      
      
    
    
       
    
   
  
    <bolt-menu spacing="medium">
  <span slot="title">Menu Options</span>
  <bolt-menu-item>
    Menu item 1 is a button
  </bolt-menu-item>
  <bolt-menu-item url="https://pega.com">
    Menu item 2 is a link
  </bolt-menu-item>
</bolt-menu>
  
        
      
    
        
        
      
    
  
  
  
  
  
      
        
  Debug Panel