@metamask/snaps-sdk
Version:
A library containing the core functionality for building MetaMask Snaps
14 lines • 393 B
JavaScript
import { createSnapComponent } from "../component.mjs";
const TYPE = 'Spinner';
/**
* A spinner component, which is used to display a spinner, indicating that some
* operation is in progress.
*
* This component does not accept any props.
*
* @returns A spinner element.
* @example
* <Spinner />
*/
export const Spinner = createSnapComponent(TYPE);
//# sourceMappingURL=Spinner.mjs.map