forked from Shinonome/dots-hyprland
16 lines
355 B
QML
16 lines
355 B
QML
pragma ComponentBehavior: Bound
|
|
import QtQuick
|
|
|
|
StyledRectangle {
|
|
id: root
|
|
|
|
property bool vertical: false
|
|
property real startRadius
|
|
property real endRadius
|
|
|
|
topLeftRadius: startRadius
|
|
topRightRadius: vertical ? startRadius : endRadius
|
|
bottomLeftRadius: vertical ? endRadius : startRadius
|
|
bottomRightRadius: endRadius
|
|
}
|