mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-29 14:54:07 +00:00
8 lines
299 B
Text
8 lines
299 B
Text
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: MIT
|
|
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");
|
|
}
|