mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-06 02:30:38 -08:00
10 lines
173 B
QML
10 lines
173 B
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
|
|
Button {
|
|
width: main.small ? 42 : 48
|
|
height: width
|
|
font.family: fontAwesome.name
|
|
font.pixelSize: 24
|
|
flat: true
|
|
}
|