Skip to content

Instantly share code, notes, and snippets.

@Pagebakers
Last active September 15, 2022 08:14
Show Gist options
  • Save Pagebakers/33efe198b6f2f24cd59d54120ba4f770 to your computer and use it in GitHub Desktop.
Save Pagebakers/33efe198b6f2f24cd59d54120ba4f770 to your computer and use it in GitHub Desktop.
import { ThemeTypings, useTheme } from '@chakra-ui/react'
export const useDefaultProps = <ThemeKey = keyof ThemeTypings>(
componentName: ThemeKey,
) => {
const theme = useTheme()
return theme.components[componentName]?.defaultProps || {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment