You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
591 B
19 lines
591 B
import * as React from 'react';
|
|
import CardBody from './CardBody';
|
|
import CardFooter from './CardFooter';
|
|
import CardHeader from './CardHeader';
|
|
import { CardPropsType } from './PropsType';
|
|
export interface CardProps extends CardPropsType, React.HTMLProps<HTMLDivElement> {
|
|
prefixCls?: string;
|
|
}
|
|
export default class Card extends React.Component<CardProps, any> {
|
|
static defaultProps: {
|
|
prefixCls: string;
|
|
full: boolean;
|
|
};
|
|
static Header: typeof CardHeader;
|
|
static Body: typeof CardBody;
|
|
static Footer: typeof CardFooter;
|
|
render(): JSX.Element;
|
|
}
|