ThemeContext is the internal instance of React.createContext that is provided by the new Context API. It is exposed to be used with React's new useContext API.
Note: Although it is exposed for react-fela as well as preact-fela and inferno-fela, there are no useContext equivalents for the latter yet.
import { ThemeContext } from 'react-fela'
import { ThemeContext } from 'preact-fela'
import { ThemeContext } from 'inferno-fela'import { useContext } from 'react'
import { ThemeContext } from 'react-fela'
function Button() {
const theme = useContext(ThemeContext)
// do something with the theme
}