native-base
Version:
Essential cross-platform UI components for React Native
36 lines (35 loc) • 713 B
TypeScript
declare function baseStyle({ isVertical }: Record<string, any>): {
flexDirection: string;
space: number;
_avatar: {
borderWidth: number;
};
_hiddenAvatarPlaceholder: {
_text: {
color: string;
};
};
_light: {
_avatar: {
borderColor: string;
};
_hiddenAvatarPlaceholder: {
bg: string;
};
};
_dark: {
_avatar: {
borderColor: string;
};
_hiddenAvatarPlaceholder: {
bg: string;
};
};
};
declare const _default: {
baseStyle: typeof baseStyle;
defaultProps: {
isVertical: boolean;
};
};
export default _default;