mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-30 23:27:22 +00:00

These are showing off use-cases for Slint, but they're not examples showing individual Slint features. Also removed the old printerdemo while at it.
16 lines
No EOL
894 B
Text
16 lines
No EOL
894 B
Text
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
export global Images {
|
|
in property <image> arrow-left: @image-url("assets/arrow-left.svg");
|
|
in property <image> arrow-right: @image-url("assets/arrow-right.svg");
|
|
in property <image> check: @image-url("assets/check.svg");
|
|
in property <image> sunny: @image-url("assets/sunny.svg");
|
|
in property <image> cloud: @image-url("assets/cloud.svg");
|
|
in property <image> cloudy: @image-url("assets/cloudy.svg");
|
|
in property <image> settings: @image-url("assets/settings.svg");
|
|
in property <image> information: @image-url("assets/information.svg");
|
|
in property <image> slint-logo: @image-url("../../../logo/slint-logo-simple-dark.svg");
|
|
in property <image> spyrosoft-logo: @image-url("assets/spyrosoft-logo.svg");
|
|
in property <image> dashboard: @image-url("assets/dashboard.svg");
|
|
} |