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.
16 lines
461 B
16 lines
461 B
import * as React from 'react';
|
|
import { CardHeaderPropsType } from './PropsType';
|
|
export interface CardHeaderProps extends CardHeaderPropsType {
|
|
prefixCls?: string;
|
|
className?: string;
|
|
style?: React.CSSProperties;
|
|
thumbStyle?: React.CSSProperties;
|
|
}
|
|
export default class CardHeader extends React.Component<CardHeaderProps, any> {
|
|
static defaultProps: {
|
|
prefixCls: string;
|
|
thumbStyle: {};
|
|
};
|
|
render(): JSX.Element;
|
|
}
|