diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-10-26 09:35:06 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-10-26 09:35:06 +0800 |
commit | d5d99b9d2e3c793a95c68c1035246644b3ae80c6 (patch) | |
tree | 880f13fd7dba96285c23986e505f3166de099a4c /packages/instant/src/components/animations | |
parent | ab2759f43105c0f2d441790e138840706c6759f8 (diff) | |
download | dexon-sol-tools-d5d99b9d2e3c793a95c68c1035246644b3ae80c6.tar dexon-sol-tools-d5d99b9d2e3c793a95c68c1035246644b3ae80c6.tar.gz dexon-sol-tools-d5d99b9d2e3c793a95c68c1035246644b3ae80c6.tar.bz2 dexon-sol-tools-d5d99b9d2e3c793a95c68c1035246644b3ae80c6.tar.lz dexon-sol-tools-d5d99b9d2e3c793a95c68c1035246644b3ae80c6.tar.xz dexon-sol-tools-d5d99b9d2e3c793a95c68c1035246644b3ae80c6.tar.zst dexon-sol-tools-d5d99b9d2e3c793a95c68c1035246644b3ae80c6.zip |
chore: dont override toString of BigNumber and other PR feedback
Diffstat (limited to 'packages/instant/src/components/animations')
-rw-r--r-- | packages/instant/src/components/animations/slide_animations.tsx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/instant/src/components/animations/slide_animations.tsx b/packages/instant/src/components/animations/slide_animations.tsx index 7c8666861..84280372b 100644 --- a/packages/instant/src/components/animations/slide_animations.tsx +++ b/packages/instant/src/components/animations/slide_animations.tsx @@ -21,7 +21,10 @@ export interface SlideAnimationProps { animationDirection?: string; } -export const SlideAnimation = styled<SlideAnimationProps, 'div'>('div')` +export const SlideAnimation = + styled.div < + SlideAnimationProps > + ` animation-name: ${props => css` ${props.keyframes}; |