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.

20 lines 761 B
import React from "react"; export interface LiquidSurfaceProps { className?: string; style?: React.CSSProperties; colors?: string[]; speed?: number; intensity?: number; grainIntensity?: number; zoom?: number; gradientSize?: number; gradientCount?: number; color1Weight?: number; color2Weight?: number; darkNavyColor?: string; scheme?: number; heading?: string; showCursor?: boolean; } export default function LiquidSurface({ className, style, colors, speed, intensity, grainIntensity, zoom, gradientSize, gradientCount, color1Weight, color2Weight, darkNavyColor, scheme, heading, showCursor, }: LiquidSurfaceProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=liquid-surface.d.ts.map