mirror of
https://github.com/slint-ui/slint.git
synced 2025-10-28 18:52:16 +00:00
11 lines
386 B
Text
11 lines
386 B
Text
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import { MaterialPalette } from "../styling/material_palette.slint";
|
|
import { MaterialStyleMetrics } from "../styling/material_style_metrics.slint";
|
|
|
|
export component Icon inherits Image {
|
|
width: MaterialStyleMetrics.icon_size_18;
|
|
height: self.width;
|
|
colorize: MaterialPalette.on_background;
|
|
}
|