| 123456789101112131415161718192021 | package viewsimport (	"fyne.io/fyne/v2"	"fyne.io/fyne/v2/container"	"fyne.io/fyne/v2/theme"	"fyne.io/fyne/v2/widget"	"github.com/gravitl/netmaker/netclient/gui/components")// GetConfirmation - displays a confirmation messagefunc GetConfirmation(msg string, onCancel, onConfirm func()) fyne.CanvasObject {	return container.NewGridWithColumns(1,		container.NewCenter(widget.NewLabel(msg)),		container.NewCenter(			container.NewHBox(				components.ColoredIconButton("Confirm", theme.ConfirmIcon(), onConfirm, components.Gravitl_color),				components.ColoredIconButton("Cancel", theme.CancelIcon(), onCancel, components.Danger_color),			)),	)}
 |