UNPKG

@metamask/snaps-sdk

Version:

A library containing the core functionality for building MetaMask Snaps

15 lines 417 B
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 /> * @category Components */ export const Spinner = createSnapComponent(TYPE); //# sourceMappingURL=Spinner.mjs.map