pragma Singleton import QtQuick 2.13 Item { property int radius: 25 property real disableOpacity: 0.25 property real hoverOpacity: 0.20 property int animationDuration: 180 property real hoverCoeffecient: 1.07 property real disableCoeffecient: 4 enum State { //status Enable, Pressed, Hoverd, Disabel, //button type Primary, Secondary, Tertiary } }