mirror of
https://github.com/slint-ui/slint.git
synced 2025-10-01 22:31:14 +00:00
9 lines
362 B
Text
9 lines
362 B
Text
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: MIT
|
|
import { Palette,Measurements,Colors } from "../common.slint";
|
|
import { Appliance } from "appliance.slint";
|
|
export component Microwave inherits Appliance {
|
|
time-remaining: "0:12 mins";
|
|
image-size: self.width * 1;
|
|
appliance-image: @image-url("../images/microwave.jpg");
|
|
}
|