File tree 2 files changed +3
-3
lines changed
tailwind/TextAnimations/BlurText
ts-tailwind/TextAnimations/BlurText
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ const BlurText = ({
76
76
< animated . span
77
77
key = { index }
78
78
style = { props }
79
- className = "inline-block transition-transform will-change-[transform,filter,opacity]"
79
+ className = "inline-block will-change-[transform,filter,opacity]"
80
80
>
81
81
{ elements [ index ] === ' ' ? '\u00A0' : elements [ index ] }
82
82
{ animateBy === 'words' && index < elements . length - 1 && '\u00A0' }
@@ -86,4 +86,4 @@ const BlurText = ({
86
86
) ;
87
87
} ;
88
88
89
- export default BlurText ;
89
+ export default BlurText ;
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ const BlurText: React.FC<BlurTextProps> = ({
95
95
< AnimatedSpan
96
96
key = { index }
97
97
style = { props }
98
- className = "inline-block transition-transform will-change-[transform,filter,opacity]"
98
+ className = "inline-block will-change-[transform,filter,opacity]"
99
99
>
100
100
{ elements [ index ] === ' ' ? '\u00A0' : elements [ index ] }
101
101
{ animateBy === 'words' && index < elements . length - 1 && '\u00A0' }
You can’t perform that action at this time.
0 commit comments