UNPKG

uiinfinity-components

Version:

Beautiful UI components with smooth animations and 3D effects

9 lines 424 B
import * as React from "react"; interface GlowCardProps extends React.HTMLAttributes<HTMLDivElement> { glowColor?: "purple" | "cyan" | "pink" | "green" | "yellow" | "red"; glowIntensity?: "subtle" | "medium" | "strong"; animated?: boolean; } declare const GlowCard: React.ForwardRefExoticComponent<GlowCardProps & React.RefAttributes<HTMLDivElement>>; export { GlowCard }; //# sourceMappingURL=glow-card.d.ts.map