We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It would be nice if there was a way to have transitions when an icon changes in IconButton.
IconButton
This would be key to doing that: https://svelte.dev/examples#transition-events.
We could just add another prop:
<IconButton icon={[ { name: 'favorite' }, { name: 'favorite_outline' } ]} transition="scale" bind:on />
Then, every time on is toggled, the old icon will animate out with a scale transition, and the new one will animate it with a scale.
on
scale
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It would be nice if there was a way to have transitions when an icon changes in
IconButton
.This would be key to doing that: https://svelte.dev/examples#transition-events.
We could just add another prop:
Then, every time
on
is toggled, the old icon will animate out with ascale
transition, and the new one will animate it with ascale
.The text was updated successfully, but these errors were encountered: