UNPKG

@questlabs/react-native-sdk

Version:
14 lines (11 loc) 323 B
import { TextStyle, ViewStyle } from "react-native"; export type Props = { option: (string | number)[]; onSelect: (values: (string | number)[]) => void; selectItem?: (string | number)[]; styleConfig?: styleConfig; }; export interface styleConfig { style?: TextStyle; selectedStyle?: ViewStyle; }