lightswind
Version:
A collection of beautifully crafted React Components, Blocks & Templates for Modern Developers. Create stunning web applications effortlessly by using our 160+ professional and animated react components.
8 lines (7 loc) • 325 B
TypeScript
export type BlurSize = "none" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl";
interface ReflectBackgroundProps {
backdropBlurAmount?: BlurSize;
className?: string;
}
export declare function ReflectBackground({ backdropBlurAmount, className, }: ReflectBackgroundProps): React.ReactNode;
export default ReflectBackground;