@catho/react-floating-badge
Version:
Floating badge with actions for React
6 lines (5 loc) • 378 B
TypeScript
/// <reference types="react" />
import type { BadgeInternalProps } from './types';
declare const Badge: ({ bgColor, className, description, fontColor, height, loading, margin, menuWidth, placeholder, position, title, showProgress, progress, openCTA, bottomBarColor, onClick: handleClick }: BadgeInternalProps) => JSX.Element;
export default Badge;
export * from './types';