.toolbar {
   ToolbarItemGroup {
      Button("Archive", systemImage: "archivebox", action: {
         print("Archive")
      })
      Button("Send", systemImage: "envelope", action: {
         print("Message")
      })
      Button("Save", systemImage: "externaldrive", action: {
         print("Store")
      })
      Button("Input", systemImage: "tray", action: {
         print("Input")
      })
      Button("Output", systemImage: "paperplane", action: {
         print("Output")
      })
      Button("Open", systemImage: "folder", action: {
         print("Open")
      })
   }
   ToolbarItem {
      Button("Shop", systemImage: "cart", action: {
         print("Shop")
      })
   }
   .visibilityPriority(.high)
}