@octopusdeploy/design-system-components
Version:
The design systems component library.
9 lines (8 loc) • 481 B
TypeScript
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;