Distorted Glass
Distorted Glass is a React and Tailwind CSS component from Cult UI, licensed MIT. Copy it and paste it into your project.
Cult UI
MIT
other
What it is
Distorted Glass is a React and Tailwind CSS 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.
Distorted Glass
"use client"
import { cn } from "@/lib/utils"
export const DistortedGlass = ({ className }: { className?: string }) => {
return (
<>
<div
className={cn(
"relative hidden h-[50px] w-[360px] overflow-hidden rounded-b-2xl lg:w-[600px] xl:block xl:w-full",
className
)}
>
<div className="pointer-events-none absolute bottom-0 z-10 size-full overflow-hidden rounded-b-2xl border border-[#f5f5f51a]">
<div className="glass-effect size-full"></div>
</div>
<svg>
<title>Distorted Glass</title>
<defs>
<filter id="fractal-noise-glass">
<feTurbulence
type="fractalNoise"
baseFrequency="0.12 0.12"
numOctaves="1"
result="warp"
></feTurbulence>
<feDisplacementMap
xChannelSelector="R"
yChannelSelector="G"
scale="30"
in="SourceGraphic"
in2="warp"
/>
</filter>
</defs>
</svg>
</div>
<style jsx>{`
.glass-effect {
background: rgba(0, 0, 0, 0.2);
background: repeating-radial-gradient(
circle at 50%50%,
rgb(255 255 255 / 0),
rgba(255, 255, 255, 0.2) 10px,
rgb(255 255 255) 31px
);
filter: url(#fractal-noise-glass);
background-size: 6px 6px;
backdrop-filter: blur(0px);
}
`}</style>
</>
)
}