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.
16 lines • 642 B
TypeScript
/**
* Valid blur sizes supported by Tailwind CSS.
*/
export type BlurSize = "none" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl";
/**
* @typedef {Object} HellBackgroundProps
* @property {BlurSize} [backdropBlurAmount] - The size of the backdrop blur to apply.
* @property {string} [className] - Additional CSS classes to apply to the container div.
*/
interface HellBackgroundProps {
backdropBlurAmount?: string;
className?: string;
}
declare function GradientBackground({ backdropBlurAmount, className, }: HellBackgroundProps): React.ReactNode;
export default GradientBackground;
//# sourceMappingURL=gradient-background.d.ts.map