We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f6ab47 commit acde0f1Copy full SHA for acde0f1
docs/guides/customizing-clerk/clerk-theme.android.mdx
@@ -181,7 +181,9 @@ You can customize fonts by modifying the `typography` property of the `ClerkThem
181
#### Using a font family name
182
183
```kotlin
184
-AuthView(clerkTheme = ClerkTheme(typography = ClerkTypography(displaySmall = ClerkTypographyDefaults.displaySmall.copy(fontSize = 24.sp))))
+val fontFamily = FontFamily(Font(R.font.custom_font))
185
+
186
+AuthView(clerkTheme = ClerkTheme(typography = ClerkTypography(displaySmall = ClerkTypographyDefaults.displaySmall.copy(fontSize = 24.sp, fontFamily = fontFamily))))
187
```
188
189
## Light and Dark mode support
0 commit comments