Plugins

Covers Engine Plugin SDK 2.0.0 · Interface Plugin SDK 0.2.0

ManualRefreshButtonProps

Props for the standard refresh icon button.

Import

import type { ManualRefreshButtonProps } from "@dartwic/interface-sdk/ui";

Declaration

export interface ManualRefreshButtonProps extends ButtonProps {
    /** Tooltip and accessible label. */
    tooltip?: string;
    /** Shows the spinning refresh state and disables the button. */
    isRefreshing?: boolean;
}

Members

NameTypeRequirementDescription
tooltipstringOptionalTooltip and accessible label.
isRefreshingbooleanOptionalShows the spinning refresh state and disables the button.