antd-mobile-rn
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
16 lines (15 loc) • 486 B
TypeScript
import React from 'react';
import { ImageStyle, StyleProp, ViewStyle } from 'react-native';
import { CardHeaderPropsType } from './PropsType';
export interface CardHeaderProps extends CardHeaderPropsType {
styles?: any;
style?: StyleProp<ViewStyle>;
thumbStyle?: StyleProp<ImageStyle>;
}
export default class CardHeader extends React.Component<CardHeaderProps, any> {
static defaultProps: {
thumbStyle: {};
style: {};
};
render(): JSX.Element;
}