28 lines
854 B
QML
28 lines
854 B
QML
pragma Singleton
|
|
|
|
import QtQuick
|
|
|
|
Item {
|
|
property alias dotrice: dotrice.font.family
|
|
property alias dotriceBold: dotriceBold.font.family
|
|
property alias dotriceCondensed: dotriceCondensed.font.family
|
|
property alias plusJakartaSans: plusJakartaSans.font.family
|
|
|
|
FontLoader {
|
|
id: dotrice
|
|
source: "qrc:/live.flowy/imports/DesignSystem/fonts/dotrice/Dotrice-Regular.otf"
|
|
}
|
|
FontLoader {
|
|
id: dotriceBold
|
|
source: "qrc:/live.flowy/imports/DesignSystem/fonts/dotrice/Dotrice-Bold.otf"
|
|
}
|
|
FontLoader {
|
|
id: dotriceCondensed
|
|
source: "qrc:/live.flowy/imports/DesignSystem/fonts/dotrice/Dotrice-Condensed.otf"
|
|
}
|
|
FontLoader {
|
|
id: plusJakartaSans
|
|
source: "qrc:/live.flowy/imports/DesignSystem/fonts/Plus_Jakarta_Sans/PlusJakartaSans-VariableFont_wght.ttf"
|
|
}
|
|
}
|