sticky-horse
Version:
With StickyHorse allow your users to send feedback to your team.
12 lines (11 loc) • 405 B
TypeScript
import React from 'react';
import 'react-toastify/dist/ReactToastify.css';
import '../styles.css';
interface StickyNoteWrapperProps {
toEmail: string;
onAddNote?: (content: string) => void;
customButton?: React.ReactNode;
getNoteHandler?: (handler: (e: React.MouseEvent | MouseEvent) => void) => void;
}
export declare const StickyNoteWrapper: React.FC<StickyNoteWrapperProps>;
export {};