mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 11:28:07 +00:00
17 lines
432 B
QML
17 lines
432 B
QML
import QtQuick 2.7
|
|
import QtQuick.Controls.Basic 2.2 as Control
|
|
import QtQuick.Effects
|
|
import QtQuick.Layouts
|
|
import Linphone
|
|
|
|
Button {
|
|
id: mainItem
|
|
textSize: Typography.b2.pixelSize
|
|
textWeight: Typography.b2.weight
|
|
color: DefaultStyle.main1_100
|
|
textColor: DefaultStyle.main1_500_main
|
|
leftPadding: 12 * DefaultStyle.dp
|
|
rightPadding: 12 * DefaultStyle.dp
|
|
topPadding: 6 * DefaultStyle.dp
|
|
bottomPadding: 6 * DefaultStyle.dp
|
|
}
|