UNPKG

@metamask/snaps-sdk

Version:

A library containing the core functionality for building MetaMask Snaps

21 lines 1.01 kB
import { createSnapComponent } from "../../component.mjs"; 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> */ export const SelectorOption = createSnapComponent(TYPE); //# sourceMappingURL=SelectorOption.mjs.map