UNPKG

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 433 B
/** * 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; } declare function HellBackground({ backdropBlurAmount, className, color, }: HellBackgroundProps): React.ReactNode; export default HellBackground; //# sourceMappingURL=hell-background.d.ts.map