Skip to content

Commit

Permalink
🐶
Browse files Browse the repository at this point in the history
  • Loading branch information
scurker committed Dec 11, 2024
1 parent 9e4d815 commit ba1341b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/react/src/components/AnchoredOverlay/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ type AnchoredOverlayProps<
Overlay extends HTMLElement,
Target extends HTMLElement
> = {
/** Positional placement value to anchor the overlay element relative to its anchored target. */
placement: Placement | 'auto' | 'auto-start' | 'auto-end';
/** A target element or ref to attach the overlay anchor element. */
target: Target | React.MutableRefObject<Target> | React.RefObject<Target>;
/** Positional placement value to anchor the overlay element relative to its anchored target. */
placement: Placement | 'auto' | 'auto-start' | 'auto-end';
/** Determines if the overlay anchor is currently visible. */
open?: boolean;
/** A callback function that is called when the overlay state changes. */
Expand Down

0 comments on commit ba1341b

Please sign in to comment.