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

Type declaration

  • OptionalbackgroundColor?: string | null

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

    If set to undefined or null, it will use the default button color of the application.

  • fullWidth: boolean

    Whether or not the button should be full width.

  • OptionalhoverColor?: string | null

    The background color of the button when it is hovered.

    If set to undefined or null, it will use the default button hover color of the application.

  • minHeight: number

    The minimum height of the button in pixels.

  • OptionaltextColor?: string | null

    The text color of the button.

    If set to undefined or null, it will use the default button text color of the application.