slint/demos/energy-monitor/ui/images.slint
Simon Hausmann a98d4709be Move printer demo and energy-monitor into new top-level demos/ folder
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.
2024-10-25 12:09:32 +02:00

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");
}