feedbacker-react
Version:
A drop-in React feedback system for component-level feedback capture during development and design review
13 lines • 445 B
TypeScript
/**
* FAB (Floating Action Button) component
* Main entry point for feedback interactions with expand/collapse functionality
* Optimized with React.memo and performance improvements
*/
import React from 'react';
interface FABProps {
position?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
className?: string;
}
export declare const FAB: React.NamedExoticComponent<FABProps>;
export {};
//# sourceMappingURL=FAB.d.ts.map