import QtQuick 2.12
import QtQuick.Controls 2.12

Slider {
    from: 0
    to: 100
    value: 50
    stepSize: 1
    orientation: Qt.Horizontal
}
