1234567891011121314151617181920212223242526272829303132333435363738394041 |
- import { IBaseProps } from '../_util/base';
- export interface IBadgeProps extends IBaseProps {
-
- type: 'dot' | 'number' | 'text' | 'bubble';
-
- text: string | number;
-
- position: 'top-left' | 'top-center' | 'top-right' | 'left' | 'right' | 'bottom-left' | 'bottom-center' | 'bottom-right';
-
- offsetX: string;
-
- offsetY: number | string;
-
- stroke: boolean;
-
- bgColor: string;
- }
- export declare const BadgeDefaultProps: Partial<IBadgeProps>;
- export declare const BadgeFunctionalProps: Partial<IBadgeProps>;
|