UNPKG

@kietpt2003/react-native-core-ui

Version:
14 lines 465 B
import { ColorValue } from 'react-native'; import React from 'react'; export interface SelectItemStyleProps { backgroundColor?: ColorValue; iconColor?: ColorValue; textColor?: ColorValue; } export interface SelectItemProps { selectItemStyle?: SelectItemStyleProps; value?: number; } declare const SelectItem: ({ selectItemStyle, value, }: SelectItemProps) => React.JSX.Element; export default SelectItem; //# sourceMappingURL=SelectItem.d.ts.map