UNPKG

@hhgtech/hhg-components

Version:
14 lines (13 loc) 531 B
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 };