Type alias ButtonConfig

ButtonConfig: {
    className?: string;
    collapsable?: boolean;
    hoverScale?: boolean;
    icon?: string;
    iconActive?: string;
    id?: string;
    tabbable?: boolean;
    title?: string;
}

Configuration for AbstractButton

Type declaration

  • Optional className?: string
  • Optional collapsable?: boolean

    if the button can be moved to menu when the navbar is too small

    Default

    false
    
  • Optional hoverScale?: boolean

    if the button has an mouse hover effect

    Default

    false
    
  • Optional icon?: string

    icon of the button

  • Optional iconActive?: string

    override icon when the button is active

  • Optional id?: string
  • Optional tabbable?: boolean

    if the button is accessible with the keyboard

    Default

    true
    
  • Optional title?: string

Generated using TypeDoc