UNPKG

@octopusdeploy/design-system-components

Version:
9 lines (8 loc) 481 B
import type { PropsWithChildren } from "react"; export declare const popoverWidthOptions: readonly ["narrow", "wide", "extra-wide"]; export type PopoverWidth = (typeof popoverWidthOptions)[number]; export interface PopoverContentContainerProps { width?: PopoverWidth; boundaryPadding?: number; } export declare function PopoverContentContainer({ width, children, boundaryPadding }: PropsWithChildren<PopoverContentContainerProps>): import("react/jsx-runtime").JSX.Element;