@sendbird/uikit-react-native-foundation
Version:
A foundational UI kit for building chat-enabled React Native apps.
13 lines (9 loc) • 346 B
text/typescript
import { useContext } from 'react';
import type { UIKitTheme } from '../types';
import UIKitThemeContext from './UIKitThemeContext';
const useUIKitTheme = () => {
const context = useContext(UIKitThemeContext);
if (!context) throw Error('UIKitThemeContext is not provided');
return context as UIKitTheme;
};
export default useUIKitTheme;