UNPKG

@appletosolutions/reactbits

Version:

A comprehensive collection of beautiful, performant React animation components including bounce effects, click sparks, star borders, scroll-triggered animations, and fade transitions.

14 lines 367 B
import React from "react"; export interface GlassIconsItem { icon: React.ReactElement; color: string; label: string; customClass?: string; } export interface GlassIconsProps { items: GlassIconsItem[]; className?: string; } declare const GlassIcons: React.FC<GlassIconsProps>; export default GlassIcons; //# sourceMappingURL=GlassIcons.d.ts.map