UNPKG

react-achievements-zustand

Version:

This package allows users to transpose a React achievements engine over their React apps using Zustand for state management

10 lines (9 loc) 253 B
import React from 'react'; interface BadgeProps { icon: string; title: string; description: string; position?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right'; } declare const Badge: React.FC<BadgeProps>; export default Badge;