Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Living wiki of UI design patterns and best practices built with Fumadocs, Next.js, and Base UI components.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
rules/spring-params-balanced.md
1---2title: Balanced Spring Parameters3impact: MEDIUM4tags: spring, stiffness, damping5---67## Balanced Spring Parameters89Spring parameters must be balanced; avoid excessive oscillation.1011**Incorrect (too bouncy):**1213```tsx14transition={{15type: "spring",16stiffness: 1000,17damping: 5,18}}19```2021**Correct (balanced):**2223```tsx24transition={{25type: "spring",26stiffness: 500,27damping: 30,28}}29```30