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
495 B

import * as React from 'react';
import { BadgePropsTypes } from './PropsType';
export interface BadgeProps extends BadgePropsTypes {
prefixCls?: string;
className?: string;
hot?: boolean;
style?: React.CSSProperties;
}
export default class Badge extends React.Component<BadgeProps, any> {
static defaultProps: {
prefixCls: string;
size: string;
overflowCount: number;
dot: boolean;
corner: boolean;
};
render(): JSX.Element;
}