What problem does it solve? Wiring a fade-to-blur edge (like iOS sticky headers or glassy overlays) in React requires knowing the exact props and rendering mechanism of the progressive-blur package, plus a non-obvious Chrome rendering bug. This Skill provides the authoritative offline API reference so you configure LinearBlur and RadialBlur correctly without re-reading upstream source. ## Core Features & Use Cases - Component API Reference: Full prop tables for LinearBlur and RadialBlur covering strength, steps, falloffPercentage, tint, and the side direction prop. - Chrome Gotcha Mitigation: Documents the Chromium #40778541 bug where overflow:hidden plus border-radius on a shared ancestor breaks masked backdrop-filter rendering, with ordered mitigations. - Copy-Paste Examples: Ready JSX for a sticky-top fade overlay and a center-clear radial spotlight, plus a symptom-to-fix error table. - Use Case: You are building a React scroll view with a title bar and want content to progressively blur as it scrolls under the header. Use this Skill to pick LinearBlur, set side="top", tune strength and steps, and avoid the Chrome ancestor bug. ## Quick Start Ask the AI to add a progressive blur fade to the top edge of a React scroll container using the progressive-blur LinearBlur component.