UNPKG

@sendbird/uikit-react-native-foundation

Version:

A foundational UI kit for building chat-enabled React Native apps.

7 lines (6 loc) 336 B
import type { FontAttributes, UIKitTypography } from '../types'; export type UIKitTypographyOverrides = Partial<UIKitTypography> & { shared?: Partial<FontAttributes>; }; declare const createTypography: (overrides?: UIKitTypographyOverrides, scaleFactor?: (dp: number) => number) => UIKitTypography; export default createTypography;