fmeditor-slint/ui/widgets/separator.slint

18 lines
326 B
Plaintext
Raw Normal View History

2024-04-09 19:52:34 +00:00
export component VerticalSeparator {
Path {
width: 1px;
stroke: black;
stroke-width: 1px;
commands: "M 0 0 L 0 1 Z";
}
}
export component HorizontalSeparator {
Path {
height: 1px;
stroke: black;
stroke-width: 1px;
commands: "M 0 0 L 1 0 Z";
}
}