@cometchat/chat-uikit-react-native
Version:
Ready-to-use Chat UI Components for React Native
17 lines (15 loc) • 510 B
text/typescript
import { ImageType } from '../../shared';
import { PollsStyleInterface } from './Polls';
import { PollsBubbleStyleInterface } from './PollsBubble';
export interface PollsConfigurationInterface {
createPollsStyle?: PollsStyleInterface;
pollsBubbleStyle?: PollsBubbleStyleInterface;
title?: string;
questionPlaceholderText?: string;
answerPlaceholderText?: string;
answerHelpText?: string;
addAnswerText?: string;
deleteIcon?: ImageType;
closeIcon?: ImageType;
createPollIcon?: ImageType;
}