@arelstone/react-native-email-chip
Version:
React Native component to display a list of emails as editable chips
13 lines (12 loc) • 379 B
TypeScript
import React, { ReactElement } from 'react';
import { StyleProp, ViewStyle, TextStyle } from 'react-native';
interface Props {
index: number;
value: string;
onPress: (index: number) => void;
chipContainerStyle?: StyleProp<ViewStyle>;
chipTextStyle?: StyleProp<TextStyle>;
chipImage?: ReactElement;
}
export declare const Chip: React.FC<Props>;
export {};