Progressive BlurAdds a smooth blur gradient effect to scrollable content.specialblur PreviewCodeItem 1Item 2Item 3Item 4Item 5Item 6Item 7Item 8Item 9Item 10Item 11Item 12Item 13Item 14Item 15Copy"use client"; import { ProgressiveBlur } from "@/components/vritti/progressive-blur"; export function ProgressiveBlurExample() { return ( <div className="relative w-full rounded-xl border h-[300px]"> <div className="h-full overflow-auto"> <div className="flex flex-col gap-2 p-4"> {Array.from({ length: 15 }).map((_, index) => ( <div key={index} className="flex h-16 w-full items-center justify-center rounded-xl border" > Item {index + 1} </div> ))} </div> </div> <ProgressiveBlur position="bottom" height="40%" /> </div> ); } Installation CLIManualpnpmnpmyarnbunpnpm dlx shadcn@latest add "https://vritti.thesatyajit.com/r/progressive-blur"Copy