Plugins

Covers Engine Plugin SDK 2.0.0 · Interface Plugin SDK 0.2.0

ManualRefreshButton

Renders the standard refresh icon button with an in-progress state.

Import

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

Declaration

export const ManualRefreshButton: HostComponent<ManualRefreshButtonProps>;

ManualRefreshButtonProps

Props for the standard refresh icon button.

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