@devrue/rn-select
Version:
Custom typescript only select component for react native
13 lines • 373 B
TypeScript
import type { LayoutRectangle, TextStyle } from 'react-native';
export type Option = [string, string];
export type IconStyle = Pick<TextStyle, 'color' | 'fontSize'>;
export type AnchorPos = Partial<{
x: number;
y: number;
width: number;
}>;
export type LayoutRect = LayoutRectangle & {
left?: number;
top?: number;
};
//# sourceMappingURL=types.d.ts.map