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.
12 lines (11 loc) • 395 B
TypeScript
/**
* Valid blur sizes supported by Tailwind CSS.
*/
export type BlurSize = "none" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl";
interface HellBackgroundProps {
backdropBlurAmount?: BlurSize;
className?: string;
color?: string;
}
export declare function HellBackground({ backdropBlurAmount, className, color, }: HellBackgroundProps): React.ReactNode;
export default HellBackground;