Closed ablaszkiewicz closed 2 years ago
Hi! This seems to be quite a common issue, think I will add a section in the readme around this.. But it's likely you forgot the extend the chakra theme with the Steps
configuration:
import { ChakraProvider, extendTheme } from '@chakra-ui/react';
import { StepsStyleConfig as Steps } from 'chakra-ui-steps';
const theme = extendTheme({
components: {
Steps,
},
});
export const App = () => {
return (
<ChakraProvider theme={theme}>
<App />
</ChakraProvider>
);
};
Thank you very much. I was about to change my profession to hair dresser.
Hi.
These are my dependencies:
I tried copying first code example from docs and it threw this error:
So I tried to strip it down to minimal code
And it still throws the same error. Not sure how beneficial this would be but it shows error here
Any clue what is going on and how to fix it?