@metamask/snaps-sdk
Version:
A library containing the core functionality for building MetaMask Snaps
22 lines • 1.02 kB
JavaScript
import { createSnapComponent } from "../../component.mjs";
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>
*/
export const Selector = createSnapComponent(TYPE);
//# sourceMappingURL=Selector.mjs.map