UNPKG

sticky-horse

Version:

With StickyHorse allow your users to send feedback to your team.

14 lines (13 loc) 281 B
import React from 'react'; interface StickyNoteProps { id: string; content: string; position: { x: number; y: number; }; color: string; onRemove: (id: string) => void; } export declare const StickyNote: React.FC<StickyNoteProps>; export {};