This component no longer exists. It was in remotionui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-11 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
springs
remotionui/springsRemovedUtility
Default spring configurations
Live preview
live · rendered by the registry
Rendered by remotionui on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://remotionui.com/r/springs.jsonSource
1import type { SpringConfig } from "remotion";23export const springSmooth: SpringConfig = {4 damping: 200,5 mass: 1,6 stiffness: 100,7 overshootClamping: true,8};910export const springSnappy: SpringConfig = {11 damping: 20,12 mass: 0.8,13 stiffness: 200,14 overshootClamping: true,15};1617export const springBouncy: SpringConfig = {18 damping: 12,19 mass: 0.9,20 stiffness: 180,21 overshootClamping: false,22};
