ButtonTestWorkerUpdate: {
    backgroundColor?: string | null;
    fullWidth?: boolean;
    hoverColor?: string | null;
    minHeight?: number;
    textColor?: string | null;
} & TestWorkerUpdate

Type declaration

  • OptionalbackgroundColor?: string | null

    Change the background color of the button when it is not hovered.

    Set to null to revert to the default.

    This may be set to any valid HTML color.

  • OptionalfullWidth?: boolean

    Change whether or not the button should be full width.

  • OptionalhoverColor?: string | null

    Change the background color of the button when it is hovered.

    Set to null to revert to the default.

    This may be set to any valid HTML color.

  • OptionalminHeight?: number

    Change the minimum height of the button in pixels.

  • OptionaltextColor?: string | null

    Change the text color of the button.

    Set to null to revert to the default.

    This may be set to any valid HTML color.