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.

22 lines 605 B
import React from "react"; interface ProfileCardProps { avatarUrl: string; iconUrl?: string; grainUrl?: string; behindGradient?: string; innerGradient?: string; showBehindGradient?: boolean; className?: string; enableTilt?: boolean; miniAvatarUrl?: string; name?: string; title?: string; handle?: string; status?: string; contactText?: string; showUserInfo?: boolean; onContactClick?: () => void; } declare const ProfileCard: React.NamedExoticComponent<ProfileCardProps>; export default ProfileCard; //# sourceMappingURL=ProfileCard.d.ts.map