import QtQuick 2.13 import "./SepantaUiKit/SKBtn" import "./SepantaUiKit" Item { anchors.fill: parent Grid { spacing: 20 anchors.margins: 20 anchors.fill: parent SKBtn { text: "Enable P" } SKBtn { text: "Disable P" isEnable: false } SKBtn { text: "Enable S" buttonType: Setting.Secondary } SKBtn { text: "Disable S" isEnable: false buttonType: Setting.Secondary } SKBtn { text: "Enable T" buttonType: Setting.Tertiary } SKBtn { text: "Disable T" isEnable: false buttonType: Setting.Tertiary } } }