rn-inkpad
Version:
<img src="https://res.cloudinary.com/fercloudinary/image/upload/v1715452841/packages/inkpad-banner_acl0xl.png" />
20 lines (17 loc) • 461 B
text/typescript
import {StyleProp, TextStyle, ViewStyle} from 'react-native';
export type TabControlProps = {
values: value[];
label?: string;
labelStyle?: StyleProp<TextStyle>;
selectedIndex?: number;
backgroundTabColor?: string;
tabTintColor?: string;
textColor?: string;
selectedTextColor?: string;
style?: StyleProp<ViewStyle>;
containerStyle?: StyleProp<ViewStyle>;
};
type value = {
key: string;
renderItem: React.JSXElementConstructor<any>;
};