Hold to Confirm
A destructive action that arms only while the visitor keeps holding, so a stray click cannot delete anything. The delay is the feature; the sweep is decoration.
Danger zone
Press and hold for 900 ms to confirm.
Ambience is a live light wash over the preview. Full palette re-theming of every demo arrives with Theme Studio (Pro).
// Hold to Confirm — the demo's own source, extracted verbatim.
// From src/components/demos/scenes/set-21.tsx, export HoldToConfirm.
// Needs React 18+ and Tailwind CSS v4. The classes below include this site's
// token utilities (bg-panel, text-ink-dim, chip …); their values are served as
// CSS custom properties at /api/exports/tokens.json. The reduced-motion branch
// is part of the source, not an afterthought.
// 2 helpers the demo imports are inlined above it, verbatim.
import { useEffect, useId, useRef, useState } from "react";
export function useReducedMotion(): boolean {
const [reduced, setReduced] = useState<boolean>(() =>
typeof window !== "undefined" ? window.matchMedia("(prefers-reduced-motion: reduce)").matches : false
);
useEffect(() => {
const mq = window.matchMedia("(prefers-reduced-motion: reduce)");
const on = (e: MediaQueryListEvent) => setReduced(e.matches);
mq.addEventListener("change", on);
return () => mq.removeEventListener("change", on);
}, []);
return reduced;
}
const HOLD_MS = 900;
export function HoldToConfirm() {
const reduced = useReducedMotion();
const [state, setState] = useState<"idle" | "holding" | "done">("idle");
const timer = useRef<ReturnType<typeof setTimeout> | null>(null);
const labelId = useId();
const cancel = () => {
if (timer.current) {
clearTimeout(timer.current);
timer.current = null;
}
// A cancelled hold returns to idle; a completed one stays done.
setState((s) => (s === "holding" ? "idle" : s));
};
const begin = () => {
if (state === "done" || timer.current) return;
setState("holding");
timer.current = setTimeout(() => {
timer.current = null;
setState("done");
}, HOLD_MS);
};
// A hold that outlives its scene would fire into an unmounted component.
useEffect(
() => () => {
if (timer.current) clearTimeout(timer.current);
},
[]
);
const reset = () => setState("idle");
const holding = state === "holding";
const done = state === "done";
return (
<div className="flex h-full w-full flex-col items-center justify-center gap-4 bg-[radial-gradient(70%_90%_at_50%_0%,rgba(244,63,94,0.10),transparent_62%),#0a0a0f] px-6">
<div className="w-full max-w-xs">
<p id={labelId} className="text-[10px] font-bold uppercase tracking-[0.24em] text-rose-300/70">
Danger zone
</p>
<p className="mt-1 text-xs text-ink-faint">
{done ? "Deletion confirmed. Nothing was actually deleted — this is a demo." : `Press and hold for ${HOLD_MS} ms to confirm.`}
</p>
<button
type="button"
onPointerDown={begin}
onPointerUp={cancel}
onPointerLeave={cancel}
onKeyDown={(e) => {
// Browsers repeat keydown while a key is held; only the first one arms.
if ((e.key === "Enter" || e.key === " ") && !e.repeat) begin();
}}
onKeyUp={cancel}
onBlur={cancel}
aria-describedby={labelId}
aria-live="polite"
className={`relative mt-3 w-full overflow-hidden rounded-xl border px-4 py-3 text-sm font-semibold transition-colors ${
done
? "border-emerald-400/40 bg-emerald-400/10 text-emerald-100"
: "border-rose-400/30 bg-rose-500/10 text-rose-100 hover:border-rose-400/60"
}`}
>
{/* The sweep is the only animated part. Under reduced motion the same
information is carried by the button's own label, so nothing is
lost when the bar stops moving. */}
{!reduced && (
<span
aria-hidden
className="absolute inset-y-0 left-0 bg-rose-400/20"
style={{ width: holding ? "100%" : "0%", transition: holding ? `width ${HOLD_MS}ms linear` : "none" }}
/>
)}
<span className="relative">{done ? "Deleted" : holding ? (reduced ? "Holding…" : "Keep holding…") : "Delete project"}</span>
</button>
{done && (
<button type="button" onClick={reset} className="mt-2 text-[10px] font-semibold text-ink-faint underline-offset-2 hover:underline">
Undo
</button>
)}
</div>
</div>
);
}
Snippet provenance
lines 1–113 · v1.0.0No changelog entry mentions “Hold to Confirm”, so the catalog records a single version for it.
Every line above is attributed to the single version this catalog records — we keep no per-line history, so no per-line attribution is invented. See the provenance page for the rule and the gaps.
Review notes · anchored to code lines
Threads attach to a line number in this asset's snippet, so a remark about the focus trap stays next to it.
Loading notes…
The snippet on this page is 113 lines long, so anchors run 1–113. Notes are per-asset and per-browser; a shared review thread is a server feature, and this panel is the local stand-in that proves the anchoring works.
Course rail — understand it before you ship it
Live variants
Variant gallery
The same Hold to Confirm demo re-lit in three tones — no code change, three personalities.
Danger zone
Press and hold for 900 ms to confirm.
Danger zone
Press and hold for 900 ms to confirm.
Danger zone
Press and hold for 900 ms to confirm.
Theme Studio preview
Theming example — two token themes
Assets are token-driven (100% design-token driven). Here the same scene runs under two theme presets from the token sheet.
Danger zone
Press and hold for 900 ms to confirm.
--accent 262 · dark surfaces
Danger zone
Press and hold for 900 ms to confirm.
--accent 40 · paper surfaces
90-second read
Usage recipe — where this fits
Put it where a micro-decision happens: a toggle, a loader, a hover state — the small moments that make an interface feel considered.
Drop it into the exact spot it belongs, keep the default props until the copy is final, then tune the one knob that matters for your context.
Cost honesty
Performance note
Cheaper alternative — if you need even lighter, the plain HTML version skips React entirely — same result, ~0 KB.
What it needs
Browser support strip
No polyfills ship with the asset — if a listed feature is missing in a target browser, the graceful fallback is the static layout.
prefers-reduced-motion
Reduced-motion fallback
With prefers-reduced-motion: reduce, the animation loop and travel are removed; state changes keep working through opacity and colour (≤ 300ms). The demo you see above honours the switch — try it in your OS settings and the loop will quiet down.
Design rule: the reduced branch is a second design, not a stripped page — every state change stays visible.
Pressable step-through
Keyboard walk demo
Step through what a keyboard user experiences with this asset.
Tab to the element — the focus ring is visible before interaction
Auto-suggested
Composition map — what pairs well
Same-family assets that compose cleanly with this one:
Prism Switch
A theme-aware toggle that sweeps a six-stop prism gradient across the track on every flip. Pure CSS states, keyboard reachable, announces state to screen readers.
ElementsHalo Button
Primary button with a mouse-tracking halo, press ripple and a springy scale. Ships as React + Tailwind or dependency-free HTML/CSS.
ElementsPulse Loader
Three-note loader with staggered radial pulse and optional progress text. Reduced-motion safe and tiny — 0.8 KB gzipped.
Learn essays that teach the technique
One original micro-case
Inspiration context
The settings row that got fewer support tickets
A settings screen had seventeen identical switches with no press state. Users could not tell whether a tap had registered, so they tapped twice — and support logs filled with 'it toggles back'. The fix was one press-state scale plus a 250ms state fade per row. Ticket volume on that screen dropped by half in a month.
Written in-house — no screenshots, no borrowed imagery. The pattern, not the pixels.
Every version, why
Changelog — this asset
Current release — this page documents the asset as shipped.
Token pass: colours and radii moved to the design-token sheet; a11y score raised to the current bar.
Initial release to the library — original markup, MIT licensed.
30-day sparkline
Copy history
Sample series from this asset's usage fingerprint · last 12 days shown.
Future queue
Community remixes
Queue opens after launch. Remixes arrive as alternate versions of this asset — same job, different voice — submitted by users and audited by the studio before they appear beside the original.
Star / favourite
Save this asset
Your collection is stored in this browser (localStorage) — no account needed.
Build a page around it
Pairs well with a prompt
This asset belongs inside a bigger build — here is the prompt that would generate a page containing it:
A11y-strict page — WCAG AA as a hard requirement
AA requirements · Contrast audit · Keyboard map
Exact tree
Bundled dependencies — disclosed
Full snippet ≈ 4.2 KB raw, ~1 KB gzip — before any framework you already load.
Download
Export as single file
Grab the asset as one file, ready to paste into your project.
Files are generated in your browser from the snippets on this page — nothing leaves the tab.
Scale, not clutter
Sizing system — three densities
Density is a token decision, not a per-page override — pick one density per product surface and hold it. Active: Default.
Runnable copy
Open in a sandbox
Opens this asset in a new tab with its stylesheet injected — a real, editable HTML document in your browser. No account, no upload.
If the tab is blocked, use the single-file export instead — same content, saved locally.
Written version first
Tutorial transcript
This asset does not have a video yet — so the written version stands in: the code line walk below narrates the snippet line by line, and the design rationale on this page explains the default decisions. When a video ships, this exact panel hosts its full transcript.
Annotated snippet
Code line walk
The lines that matter, with the reason they matter. Click one:
Trade-off, visible
Size vs. quality slider
Standard · CSS + hover states
~6 KBadds transitions, focus-visible and reduced-motion rules
The slider is honest: the slim tier has no JS, the pro tier pays for behaviour. Start slim, upgrade only the surfaces that need it.
HTML → React, priced
Stack-switch cost note
Taking the HTML/CSS version into a React component costs real work — and the cost is predictable:
Event wiring
Hover, focus and click become handlers — the CSS stays, the state appears.
Props for the knobs
Every inline value that should vary becomes a prop with a default — the defaults must match the CSS exactly.
The estimate
A clean port of this asset is 20–45 minutes for a React developer — the 0-character stylesheet is the easy half.
Find it the way you say it
Tag synonyms
When to pick which
Sibling comparison
| Compare | Hold to Confirm | Prism Switch | Halo Button |
|---|---|---|---|
| Kind | Elements | Elements | Elements |
| Bundle | 1.3 KB gzip | 1.2 KB gzip | 2.1 KB gzip |
| a11y | 98/100 | 98/100 | 96/100 |
| Dependencies | none | none | none |
| Copies / mo | 0 | 4,820 | 3,910 |
| Interactions | click, hold | click, hover | hover, click, drag |
The honest verdict — Prism Switch is lighter, but Hold to Confirm carries richer behaviour — pick by the interaction your screen actually needs, then swap tokens, not pages.
Similar to this — scored on shared tags, not hand-picked
Related assets
Read next — two guides and a prompt
picked by tag overlap, not by handGuide
A form is a conversation
8 min · Beginner · updated 2026-09-12
Guide
Before you copy that component: the a11y checklist
8 min · Beginner · updated 2026-09-06
Prompt
3D portfolio with neon orbit showcase
Portfolio · 87% fidelity
How these three were chosen: essays scored on shared tags (0 and 0 matches), then prompt scored on block/vibe overlap (0 matches). The rule lives in src/lib/spine.ts, so the same asset always links to the same three pages and a second reader can reproduce the choice.
The counter is a note to yourself — it adds one each time you tap, in motif:remix-count:v1, and goes nowhere. A real, public remix count would need a server and accounts; this site has neither, and it would rather say that than print a number it cannot own.