UNPKG

@metamask/snaps-sdk

Version:

A library containing the core functionality for building MetaMask Snaps

25 lines 1.13 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Selector = void 0; const component_1 = require("../../component.cjs"); const TYPE = 'Selector'; /** * A selector component, which is used to create a selector. * * @param props - The props of the component. * @param props.name - The name of the selector field. This is used to identify the * state in the form data. * @param props.title - The title of the selector field. This is displayed in the UI. * @param props.value - The selected value of the selector. * @param props.children - The children of the selector. * @property disabled - Whether the selector is disabled. * @returns A selector element. * @example * <Selector name="selector"> * <SelectorOption value="option1"><Card title="Option 1" value="Foo" /></SelectorOption> * <SelectorOption value="option2"><Card title="Option 2" value="Bar" /></SelectorOption> * <SelectorOption value="option3"><Card title="Option 3" value="Baz" /></SelectorOption> * </Selector> */ exports.Selector = (0, component_1.createSnapComponent)(TYPE); //# sourceMappingURL=Selector.cjs.map