@interactify-live/pindo-wizard-react-native
Version:
React Native PindoWizard component for media capture and interaction management
24 lines (23 loc) • 623 B
TypeScript
import React from 'react';
interface TextInputModalProps {
isOpen: boolean;
initialText?: string;
initialColor?: string;
initialBackground?: string;
initialBgOpacity?: number;
initialSize?: number;
initialBorderRadius?: number;
onSave: (data: {
text: string;
color: string;
background: string;
size: number;
width: number;
height: number;
borderRadius: number;
}) => void;
onCancel: () => void;
title?: string;
}
declare const TextInputModal: React.NamedExoticComponent<TextInputModalProps>;
export default TextInputModal;