artwork-react-native
Version:
artwork design master for react-native
50 lines (49 loc) • 1.12 kB
TypeScript
import { ViewStyle, TextStyle } from 'react-native';
export interface IAccordionStyle {
container: ViewStyle;
header: ViewStyle;
arrow: ViewStyle;
headerWrap: ViewStyle;
headerText: TextStyle;
content: ViewStyle;
contentText: TextStyle;
}
declare const _default: {
container: {
borderTopWidth: number;
borderTopColor: string;
};
header: {
flexDirection: string;
alignItems: string;
paddingLeft: number;
paddingRight: number;
borderBottomWidth: number;
borderBottomColor: string;
};
arrow: {
width: number;
height: number;
};
headerWrap: {
flex: number;
height: number;
alignItems: string;
flexDirection: string;
};
headerText: {
color: string;
fontSize: number;
};
content: {
paddingVertical: number;
paddingHorizontal: number;
borderBottomWidth: number;
borderBottomColor: string;
};
contentText: {
fontSize: number;
color: string;
};
};
export default _default;