import { WithThemeProps } from '../../../Common/theming';
import { IconName } from '../../../Common/theming/icons';
export interface UpBulleProps extends WithThemeProps {
backgroundImage: string;
message: string;
icon: IconName;
value: number;
className?: string;
}