mirror of
https://github.com/slint-ui/slint.git
synced 2025-10-28 10:49:46 +00:00
28 lines
498 B
Text
28 lines
498 B
Text
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import { MaterialPalette } from "../styling/material_palette.slint";
|
|
|
|
component BaseDivider {
|
|
Rectangle {
|
|
background: MaterialPalette.outline_variant;
|
|
}
|
|
}
|
|
|
|
export component VerticalDivider {
|
|
width: 1px;
|
|
|
|
BaseDivider {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
export component HorizontalDivider {
|
|
height: 1px;
|
|
|
|
BaseDivider {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|