@questlabs/react-native-sdk
Version:
Quest react native sdk
14 lines (11 loc) • 323 B
text/typescript
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;
}