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/appropriate-no-high-frequency.md
1---2title: No Sound on High-Frequency Interactions3impact: HIGH4tags: appropriate, frequency, typing5---67## No Sound on High-Frequency Interactions89Do not add sound to high-frequency interactions (typing, keyboard navigation).1011**Incorrect (sound on every keystroke):**1213```tsx14function Input({ onChange }) {15const handleChange = (e) => {16playSound("keystroke");17onChange(e);18};19}20```2122**Correct (no sound on typing):**2324```tsx25function Input({ onChange }) {26return <input onChange={onChange} />;27}28```29