UNPKG

@sendbird/uikit-react-native-foundation

Version:

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

8 lines (7 loc) 258 B
import React from 'react'; import type { UIKitTheme } from '../types'; type Props = React.PropsWithChildren<{ theme?: UIKitTheme; }>; declare const UIKitThemeProvider: ({ children, theme }: Props) => React.JSX.Element; export default UIKitThemeProvider;