mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 19:38:09 +00:00
18 lines
544 B
QML
18 lines
544 B
QML
import QtQuick
|
|
import QtQuick.Controls.Basic as Control
|
|
import QtQuick.Effects
|
|
import QtQuick.Layouts
|
|
import Linphone
|
|
|
|
Button {
|
|
id: mainItem
|
|
background: Item{}
|
|
icon.width: 32 * DefaultStyle.dp
|
|
icon.height: 32 * DefaultStyle.dp
|
|
textColor: down || checked ? DefaultStyle.main1_500_main : DefaultStyle.main2_500main
|
|
contentImageColor: down || checked ? DefaultStyle.main1_500_main : DefaultStyle.main2_500main
|
|
textSize: 14 * DefaultStyle.dp
|
|
textWeight: 400 * DefaultStyle.dp
|
|
textHAlignment: Text.AlignLeft
|
|
spacing: 5 * DefaultStyle.dp
|
|
}
|