mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-06 08:16:03 +00:00
18 lines
424 B
TypeScript
18 lines
424 B
TypeScript
interface GlassMenuEffectProps {
|
|
rounded?: string;
|
|
className?: string;
|
|
}
|
|
|
|
export function GlassMenuEffect({
|
|
rounded = "rounded-3xl",
|
|
className = "",
|
|
}: GlassMenuEffectProps) {
|
|
return (
|
|
<div className={`absolute inset-0 ${className}`}>
|
|
{/* Frosted glass effect with translucent border */}
|
|
<div
|
|
className={`absolute inset-0 backdrop-blur-md bg-white/5 border border-white/10 ${rounded}`}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|