mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-08 16:29:26 -05:00
14 lines
337 B
QML
14 lines
337 B
QML
pragma ComponentBehavior: Bound
|
|
import QtQuick
|
|
|
|
StyledRectangle {
|
|
property bool vertical: false
|
|
property real startRadius
|
|
property real endRadius
|
|
|
|
topLeftRadius: startRadius
|
|
topRightRadius: vertical ? startRadius : endRadius
|
|
bottomLeftRadius: vertical ? endRadius : startRadius
|
|
bottomRightRadius: endRadius
|
|
}
|