lightswind
Version:
A professionally designed animate react component library & templates market that brings together functionality, accessibility, and beautiful aesthetics for modern applications.
8 lines (7 loc) • 350 B
TypeScript
import React, { ReactNode } from "react";
interface AuroraBackgroundProps extends React.HTMLProps<HTMLDivElement> {
children: ReactNode;
showRadialGradient?: boolean;
}
export declare const AuroraBackground: ({ className, children, showRadialGradient, ...props }: AuroraBackgroundProps) => import("react/jsx-runtime").JSX.Element;
export {};