Circle V2 API Docs
    Preparing search index...

    Type Alias PopoverProps

    PopoverProps: PopoverRootProps & {
        children: React.ReactNode;
        contentProps?: PopoverContentProps;
        description?: React.ReactNode;
        disableArrow?: boolean;
        disablePortalling?: boolean;
        title?: React.ReactNode;
        trigger?: React.ReactNode;
    }

    Type Declaration

    • children: React.ReactNode

      Body content. Rendered inside Popover.Body after optional title and description.

    • OptionalcontentProps?: PopoverContentProps

      Optional props to pass to the popover content.

    • Optionaldescription?: React.ReactNode

      Optional description, rendered inside Popover.Body after title, before children.

    • OptionaldisableArrow?: boolean

      Whether to show the arrow pointing at the trigger. Default true.

    • OptionaldisablePortalling?: boolean

      Whether to disable portalling. Default false.

    • Optionaltitle?: React.ReactNode

      Optional title, rendered inside Popover.Body before description and children.

    • Optionaltrigger?: React.ReactNode

      Element(s) that open the popover (e.g. a button). Pass a single element for asChild behavior, or text/node for default trigger.