about summary refs log tree commit diff
path: root/src/lib/custom-animations
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/custom-animations')
-rw-r--r--src/lib/custom-animations/GestureActionView.web.tsx2
-rw-r--r--src/lib/custom-animations/PressableScale.tsx7
2 files changed, 7 insertions, 2 deletions
diff --git a/src/lib/custom-animations/GestureActionView.web.tsx b/src/lib/custom-animations/GestureActionView.web.tsx
index 3caaa724f..1b7d96174 100644
--- a/src/lib/custom-animations/GestureActionView.web.tsx
+++ b/src/lib/custom-animations/GestureActionView.web.tsx
@@ -1,4 +1,4 @@
-import React from 'react'
+import type React from 'react'
 
 export function GestureActionView({children}: {children: React.ReactNode}) {
   return children
diff --git a/src/lib/custom-animations/PressableScale.tsx b/src/lib/custom-animations/PressableScale.tsx
index 9ac7e5eb2..b66ddef08 100644
--- a/src/lib/custom-animations/PressableScale.tsx
+++ b/src/lib/custom-animations/PressableScale.tsx
@@ -1,4 +1,9 @@
-import {Pressable, PressableProps, StyleProp, ViewStyle} from 'react-native'
+import {
+  Pressable,
+  type PressableProps,
+  type StyleProp,
+  type ViewStyle,
+} from 'react-native'
 import Animated, {
   cancelAnimation,
   useAnimatedStyle,