Cull unused files (#11029)
This commit is contained in:
@@ -1,27 +0,0 @@
|
||||
import {withDelay, withSequence, withTiming} from 'react-native-reanimated'
|
||||
|
||||
export function ShrinkAndPop() {
|
||||
'worklet'
|
||||
|
||||
const animations = {
|
||||
opacity: withDelay(125, withTiming(0, {duration: 125})),
|
||||
transform: [
|
||||
{
|
||||
scale: withSequence(
|
||||
withTiming(0.7, {duration: 75}),
|
||||
withTiming(1.1, {duration: 150}),
|
||||
),
|
||||
},
|
||||
],
|
||||
}
|
||||
|
||||
const initialValues = {
|
||||
opacity: 1,
|
||||
transform: [{scale: 1}],
|
||||
}
|
||||
|
||||
return {
|
||||
animations,
|
||||
initialValues,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user