datepicker
datepicker copied to clipboard
How to use date picker with Chakra UI v3 changes in theme.
Have a question regarding usage with Chakra UI v3.
Before I could use date picker like this:
import { extendTheme } from "@chakra-ui/react"
export const theme = extendTheme(CalendarDefaultTheme, {
fonts: {
heading: `'Figtree', sans-serif`,
body: `'Figtree', sans-serif`,
},
})
Now with createSystem approach I need to have defaultConfig instead of CalendarDefaultTheme.
Anyone migrated to v3 with @uselessdev/datepicker library?