• Parameters

    • props: {
          activeKey?: null | string;
          arrow?: ReactNode;
          closeOnClickAway?: boolean;
          closeOnMaskClick?: boolean;
          defaultActiveKey?: null | string;
          getContainer?: GetContainer;
          onChange?: ((key) => void);
      } & {
          className?: string;
          style?: CSSProperties & Partial<Record<never, string>>;
          tabIndex?: number;
      } & AriaAttributes & {
          children?: ReactNode;
      } & RefAttributes<DropdownRef>

    Returns ReactNode

Properties

$$typeof: symbol
defaultProps?: Partial<{
    activeKey?: null | string;
    arrow?: ReactNode;
    closeOnClickAway?: boolean;
    closeOnMaskClick?: boolean;
    defaultActiveKey?: null | string;
    getContainer?: GetContainer;
    onChange?: ((key) => void);
} & {
    className?: string;
    style?: CSSProperties & Partial<Record<never, string>>;
    tabIndex?: number;
} & AriaAttributes & {
    children?: ReactNode;
} & RefAttributes<DropdownRef>>
displayName?: string

Used in debugging messages. You might want to set it explicitly if you want to display a different name for debugging purposes.

propTypes?: WeakValidationMap<{
    activeKey?: null | string;
    arrow?: ReactNode;
    closeOnClickAway?: boolean;
    closeOnMaskClick?: boolean;
    defaultActiveKey?: null | string;
    getContainer?: GetContainer;
    onChange?: ((key) => void);
} & {
    className?: string;
    style?: CSSProperties & Partial<Record<never, string>>;
    tabIndex?: number;
} & AriaAttributes & {
    children?: ReactNode;
} & RefAttributes<DropdownRef>>

Generated using TypeDoc