@octopusdeploy/design-system-components
Version:
The design systems component library.
16 lines (15 loc) • 512 B
TypeScript
import type { ReactNode } from "react";
import type { PopoverProps } from "./Popover";
import type { PopoverWidth } from "./PopoverContentContainer";
export interface PopoverBasicProps extends PopoverProps {
image?: string;
video?: string;
altText?: string;
title?: string;
description: ReactNode;
contentPadding?: number;
link1?: ReactNode;
link2?: ReactNode;
width?: PopoverWidth;
}
export declare function PopoverBasic({ width, ...props }: PopoverBasicProps): JSX.Element;