9 lines
187 B
Text
9 lines
187 B
Text
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
export struct MenuItem {
|
|
icon: image,
|
|
text: string,
|
|
trailing_text: string,
|
|
enabled: bool
|
|
}
|