12 lines
293 B
Text
12 lines
293 B
Text
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
export struct ListItem {
|
|
text: string,
|
|
supporting_text: string,
|
|
avatar_icon: image,
|
|
avatar_text: string,
|
|
avatar_background: color,
|
|
avatar_foreground: color,
|
|
action_button_icon: image
|
|
}
|