-
-
Notifications
You must be signed in to change notification settings - Fork 32.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Stepper] Breadcrumb like #13176
Comments
How is the interface for We should maybe add an interface definition to the docs. |
@bluepeter This is smart, I never thought of using the stepper for building a breadcrumb component #8818. You have to do something like: import { ChevronRight } from "mdi-material-ui";
const Connector = () => <ChevronRight />;
<Stepper className="breadcrumb" connector={<Connector />}>
{arr.map(item => item)}
</Stepper> |
Could we add it to the docs as a customization example, which would close #8818? |
Thanks @oliviertassinari your solution fixes this issue for me. Per @mbrookes note, I think the Stepper works nicely as Breadcrumbs. Closing. |
I agree with @mbrookes, I think that we could add a demo about it. |
I'd like to have a go at this issue 😄 |
We have introduced a new Breadcrumb component #14084. |
Upgrading from 3.1.1. to 3.2.0, we now get warnings when we use a Stepper with a custom connector like this:
The warnings we receive are:
We've tried multiple solutions here, none successful.
The text was updated successfully, but these errors were encountered: