@hhgtech/hhg-components
Version:
Hello Health Group common components
14 lines (13 loc) • 531 B
TypeScript
import React from 'react';
export type MobileBottomNavigationIconProps = {
badgeAmount?: string;
disabled?: boolean;
hasBadge?: boolean;
icon: JSX.Element;
isActive?: boolean;
isSpecial?: boolean;
label?: string;
on?: string;
} & React.HTMLAttributes<HTMLDivElement>;
declare const MobileBottomNavigationIcon: ({ badgeAmount, disabled, hasBadge, icon, isActive, isSpecial, label, ...props }: MobileBottomNavigationIconProps) => React.JSX.Element;
export { MobileBottomNavigationIcon };