quala-widget
Version:
Smart feedback widget for SaaS trial optimization
18 lines • 741 B
TypeScript
import { default as React } from 'react';
import { FeedbackData } from '../types';
interface EmojiMicroFeedbackProps {
question?: string;
isVisible?: boolean;
onFeedback?: (feedback: FeedbackData) => void;
onDismiss?: () => void;
position?: 'bottom-right' | 'bottom-center' | 'modal' | 'bottom-left' | 'top-right' | 'top-left';
autoHide?: boolean;
hideDelay?: number;
emojiSet?: 'default' | 'simple' | 'detailed' | 'exit-focused' | 'technical';
className?: string;
style?: React.CSSProperties;
theme?: 'light' | 'dark' | 'auto';
}
declare const EmojiMicroFeedback: React.FC<EmojiMicroFeedbackProps>;
export { EmojiMicroFeedback as QualaMicroWidget };
//# sourceMappingURL=QualaMicroWidget.d.ts.map