Back to docs
Animation
Scale Pop
Elastic pop-in animation for icons and badges.
Install
npx shadcn@latest add @native-bits/scale-popDependencies
react-native-reanimated
animationentrancemobile
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| children | ReactNode | - | Animated content |
| stiffness | number | 120 | Spring stiffness |
| damping | number | 12 | Spring damping |
Usage
```tsx
import { scale-pop } from '@/components/native-bits/scale-pop'
<ScalePop stiffness={140}>
<Badge />
</ScalePop>
```Source code
Loading...