UNPKG

gamma-help-box

Version:

Gamma Help Box is a React component that provides a floating help widget for customer support, built with framer-motion for animations.

13 lines (12 loc) 239 B
type itemsProps = { title: string; description: string; icon: string; onPress: () => void; }; interface Props { title?: string; items: itemsProps[]; } declare const HelpBox: React.FC<Props>; export default HelpBox;