/** * @author linhd * @date 2023/10/23 14:19 * @description 消息角标 */ import React, { FunctionComponent, ReactNode } from 'react'; import './index.scss'; export interface BadgeProps { /** 样式class */ className?: string; /** style */ style?: React.CSSProperties; /** 内容 */ children?: ReactNode; /** 标记内容, 不传为圆点类型, null不显示 */ sign?: ReactNode; /** 背景色 */ backgroundColor?: string; /** 文字色 */ color?: string; /** 偏移量 */ offset?: [number, number]; /** 定位方向 默认 top-right */ placement?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right'; } export declare const Badge: FunctionComponent; export default Badge;