Skip to content
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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

How can i hide labels? #98

Open
ikramferhat opened this issue Apr 25, 2022 · 2 comments
Open

How can i hide labels? #98

ikramferhat opened this issue Apr 25, 2022 · 2 comments

Comments

@ikramferhat
Copy link

No description provided.

@ermankuruoglu
Copy link

ermankuruoglu commented Apr 26, 2022

Hi, you can use your own customized tooltip. This library allow you to do that. For instance

`const TooltipComponent = ({
isFirstStep,
isLastStep,
handleNext,
handlePrev,
handleStop,
currentStep,
}) => (

This is our first tutorial!

);

<TourGuideProvider
{...{
tooltipComponent: TooltipComponent,
}}

...`

@ermankuruoglu
Copy link

Or you can pass props as below to TourGuideProvider component. But I think this is not a good solution. Maybe it will help your situation.

<TourGuideProvider
{...{
labels: {
previous: ' ',
next: ' ',
skip: ' ',
finish: ' ',
},
}}
>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants