Edge Blur
Edge Blur is a React and Tailwind CSS effect component from Cult UI, licensed MIT. Copy it and paste it into your project.
Cult UI
MIT
effects
What it is
Edge Blur is a React and Tailwind CSS effect component from Cult UI, licensed MIT. Copy it and paste it into your project.
How to use it
Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.
Five free copies a month. No card.
No packages beyond the project baseline
Licence
This component comes from Cult UI and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Edge Blur
"use client"
interface EdgeBlurProps {
position?: "top" | "bottom"
height?: number
}
export function EdgeBlur({ position = "bottom", height = 75 }: EdgeBlurProps) {
const blurLayers = [1, 2, 3, 6, 12]
const isTop = position === "top"
return (
<div
className={`fixed inset-x-0 isolate z-40 pointer-events-none ${isTop ? "top-0" : "bottom-0"}`}
style={{ height }}
>
{blurLayers.map((blur) => (
<div
key={blur}
className="absolute inset-0"
style={{
backdropFilter: `blur(${blur}px)`,
WebkitBackdropFilter: `blur(${blur}px)`,
maskImage: `linear-gradient(to ${isTop ? "bottom" : "top"}, black, transparent)`,
WebkitMaskImage: `linear-gradient(to ${isTop ? "bottom" : "top"}, black, transparent)`,
}}
/>
))}
</div>
)
}
// Convenience exports for specific positions
export function TopBlur({ height = 75 }: { height?: number }) {
return <EdgeBlur position="top" height={height} />
}
export function BottomBlur({ height = 75 }: { height?: number }) {
return <EdgeBlur position="bottom" height={height} />
}