• Parameters

    • props: {
          anchors: number[];
          children: ReactNode;
          handleDraggingOfContent?: boolean;
          onHeightChange?: ((height, animating) => void);
      } & {
          className?: string;
          style?: CSSProperties & Partial<Record<"--border-radius" | "--z-index" | "--header-height", string>>;
          tabIndex?: number;
      } & AriaAttributes & RefAttributes<FloatingPanelRef>

    Returns ReactNode

Properties

$$typeof: symbol
defaultProps?: Partial<{
    anchors: number[];
    children: ReactNode;
    handleDraggingOfContent?: boolean;
    onHeightChange?: ((height, animating) => void);
} & {
    className?: string;
    style?: CSSProperties & Partial<Record<"--border-radius" | "--z-index" | "--header-height", string>>;
    tabIndex?: number;
} & AriaAttributes & RefAttributes<FloatingPanelRef>>
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<{
    anchors: number[];
    children: ReactNode;
    handleDraggingOfContent?: boolean;
    onHeightChange?: ((height, animating) => void);
} & {
    className?: string;
    style?: CSSProperties & Partial<Record<"--border-radius" | "--z-index" | "--header-height", string>>;
    tabIndex?: number;
} & AriaAttributes & RefAttributes<FloatingPanelRef>>

Generated using TypeDoc