@metamask/snaps-sdk
Version:
A library containing the core functionality for building MetaMask Snaps
24 lines • 1.12 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SelectorOption = void 0;
const component_1 = require("../../component.cjs");
const TYPE = 'SelectorOption';
/**
* A selector option component, which is used to create a selector option. This component
* can only be used as a child of the {@link Selector} component.
*
* @param props - The props of the component.
* @param props.value - The value of the selector option. This is used to populate the
* state in the form data.
* @param props.children - The component to display.
* @param props.disabled - Whether the selector option is disabled.
* @returns A selector option 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.SelectorOption = (0, component_1.createSnapComponent)(TYPE);
//# sourceMappingURL=SelectorOption.cjs.map