useTheme is a custom hook used to get the theme object from context.
useTheme
import { useTheme } from '@hoverinc/design-system-react-web'
The useTheme hook returns the theme object.
function Example() { const theme = useTheme() return <div>{/* Do something with the theme */}</div>}