slint/ui-libraries/material/ui/components/divider.slint
2025-09-18 15:47:22 +02:00

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%;
}
}