Can't disable the animations and ripple effect for Button in React #1037
Replies: 3 comments 6 replies
-
Hi! You should be able to disable animations or the ripple effect by passing the related props inside curly braces instead of passing them as static strings. |
Beta Was this translation helpful? Give feedback.
3 replies
-
Hey guys sorry for the delay please upgrade to V2, use |
Beta Was this translation helpful? Give feedback.
0 replies
-
is there any way to disable ripple globally? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Although the animation is good but for some reason I had like to disable the Animation and ripple effect on the component in my React.js project. I tried using the snippets given below but it didn't work out for me.
<Button animated = "false" ripple = "false" color="primary" auto> Click Me </Button>
or
<Button animated ripple color="primary" auto> Click Me </Button>
Can anyone guide me through this ?
Beta Was this translation helpful? Give feedback.
All reactions