Guaxu Docs
    Preparing search index...

    Interface SelectOptionProps

    Represents an option that can be rendered inside a Select. The children property is the content shown to the user.

    interface SelectOptionProps {
        children: ReactNode;
        value: Key;
    }
    Index

    Properties

    Properties

    children: ReactNode

    Display content for the option.

    value: Key

    Unique string or number that identifies the option.