16 lines
297 B
Go
16 lines
297 B
Go
// Copyright (c) 2021 David Vogel
|
|
//
|
|
// This software is released under the MIT License.
|
|
// https://opensource.org/licenses/MIT
|
|
|
|
package input
|
|
|
|
import "github.com/vugu/vugu"
|
|
|
|
type Button struct {
|
|
AttrMap vugu.AttrMap
|
|
|
|
SymbolSlot vugu.Builder // Slot for the symbol.
|
|
DefaultSlot vugu.Builder
|
|
}
|