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
| Name | Type | Requirement | Description |
|---|---|---|---|
tooltip | string | Optional | Tooltip and accessible label. |
isRefreshing | boolean | Optional | Shows the spinning refresh state and disables the button. |