AiutaProductBarThemeTypography

Typography configuration for product bar text elements.

This interface defines text styles used for product information in the product bar throughout the SDK. It provides consistent text styling that can be customized to match your app's design system.

theme {
productBar {
typography = object : AiutaProductBarThemeTypography {
override val product = TextStyle(
fontFamily = FontFamily.Default,
fontWeight = FontWeight.Medium,
fontSize = 12.sp,
lineHeight = 18.sp
)
override val brand = TextStyle(
fontFamily = FontFamily.Default,
fontWeight = FontWeight.Medium,
fontSize = 10.sp,
lineHeight = 16.sp,
letterSpacing = 0.04.sp
)
}
}
}

Inheritors

Types

Link copied to clipboard

Properties

Link copied to clipboard
abstract val brand: TextStyle

Text style for brand names

Link copied to clipboard
abstract val product: TextStyle

Text style for product names