native-base
Version:
Essential cross-platform UI components for React Native
19 lines (18 loc) • 351 B
TypeScript
declare function baseStyle(props: Record<string, any>): {
width: string;
height: string;
_light: {
bg: string;
};
_dark: {
bg: string;
};
};
declare const _default: {
baseStyle: typeof baseStyle;
defaultProps: {
orientation: string;
thickness: string;
};
};
export default _default;