@ant-design/react-native
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
14 lines (13 loc) • 386 B
TypeScript
import { TextStyle, ViewStyle } from 'react-native';
import { Theme } from '../../style';
export interface AccordionStyle {
container: ViewStyle;
header: ViewStyle;
arrow: TextStyle;
headerWrap: ViewStyle;
headerText: TextStyle;
content: ViewStyle;
contentText: TextStyle;
}
declare const _default: (theme: Theme) => AccordionStyle;
export default _default;