Member Junction
    Preparing search index...

    A single option in a choice question.

    interface FormOption {
        icon?: string;
        label: string;
        value: string | number | boolean;
    }
    Index

    Properties

    Properties

    icon?: string

    Optional icon to display with the option. Should be a Font Awesome class (e.g., "fa-user", "fa-building").

    label: string

    Label text displayed to the user.

    value: string | number | boolean

    Value returned when this option is selected. Can be string, number, or boolean.