UNPKG

fannypack-v5

Version:

An accessible, composable, and friendly React UI Kit

10 lines (8 loc) 341 B
import * as React from 'react'; import { FannypackThemeContext } from '../Provider/ThemeContext'; import { ThemeContext as EmotionContext } from '../styled'; export function useTheme() { const { setTheme } = React.useContext(FannypackThemeContext); const theme = React.useContext(EmotionContext); return { theme, setTheme } as any; }