All the properties used in the Action icon.

interface Props {
    icon: {
        enabled: string;
        disabled?: string;
        loading?: string;
    };
    loading?: boolean;
    disabled?: boolean;
    cx?: ArgumentArray;
}

Hierarchy

  • WithClass
  • HTMLAttributes<HTMLDivElement>
    • Props

Properties

icon: {
    enabled: string;
    disabled?: string;
    loading?: string;
}

Various icon states.

Type declaration

  • enabled: string

    Enabled state

  • Optional disabled?: string

    Disabled state.

  • Optional loading?: string

    Loading state.

loading?: boolean

Controls loading state of an action.

disabled?: boolean

Controls disabled state of an action.

cx?: ArgumentArray

If you need to customize style of a component, pass a class names here.