HooksuseThemeOn this pageuseThemeuseTheme is a custom hook used to get the theme object from context.Importimport { useTheme } from '@chakra-ui/react'Return valueThe useTheme hook returns the theme object.Usagefunction Example() { const theme = useTheme() return <div>{/* Do something with the theme */}</div>}