let myTypography = AmityTypography()
// partially overriding typography
let myTypography = AmityTypography(
headerLine: UIFont(name: "Georgia-Bold", size: 20)!,
title: UIFont(name: "Georgia", size: 20)!)
// fully overriding typography
let myTypography = AmityTypography(
headerLine: UIFont(name: "Georgia-Bold", size: 20)!,
title: UIFont(name: "Georgia", size: 20)!,
bodyBold: UIFont.systemFont(ofSize: 16, weight: .regular),
body: UIFont.systemFont(ofSize: 16, weight: .regular),
captionBold: UIFont.systemFont(ofSize: 13, weight: .regular),
caption: UIFont.systemFont(ofSize: 13, weight: .light))
AmityUIKitManager.set(typography: myTypography)