react-native-netlog-fab
Version:
Floating action button for network logging in React Native apps.
15 lines • 414 B
TypeScript
import React from 'react';
import type { ViewStyle } from 'react-native';
interface FloatingButtonProps {
onPress?: () => void;
color?: string;
icon?: React.ReactNode;
position?: {
bottom?: number;
right?: number;
};
style?: ViewStyle;
}
declare const FloatingButton: React.FC<FloatingButtonProps>;
export default FloatingButton;
//# sourceMappingURL=FloatingButton.d.ts.map