antd-mobile-rn
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
25 lines (24 loc) • 816 B
TypeScript
import React from 'react';
import { StyleProp, ViewStyle } from 'react-native';
import CardBody from './CardBody.native';
import CardFooter from './CardFooter.native';
import CardHeader from './CardHeader.native';
import { CardPropsType } from './PropsType';
import { ICardStyle } from './style/index.native';
export interface CardNativeProps extends CardPropsType {
styles?: ICardStyle;
style?: StyleProp<ViewStyle>;
}
export default class Card extends React.Component<CardNativeProps, any> {
static defaultProps: {
style: {};
full: boolean;
styles: {
[x: string]: import("react-native").RegisteredStyle<any>;
};
};
static Header: typeof CardHeader;
static Body: typeof CardBody;
static Footer: typeof CardFooter;
render(): JSX.Element;
}