JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "overlay-props.tsx"

Full Path: /home/markqprx/iniasli.pro/client/ui/overlays/overlay-props.tsx
File size: 724 bytes
MIME-type: text/html
Charset: utf-8

import {
  CSSProperties,
  PointerEventHandler,
  ReactElement,
  Ref,
  RefObject,
} from 'react';
import {FocusScopeProps} from '@react-aria/focus';
import {Placement, VirtualElement} from '@floating-ui/react-dom';

export interface OverlayProps
  extends Omit<FocusScopeProps, 'children' | 'contain'> {
  children: ReactElement;
  style?: CSSProperties;
  isDismissable: boolean;
  isContextMenu?: boolean;
  isOpen: boolean;
  onClose: (value?: any) => void;
  triggerRef: RefObject<HTMLElement> | RefObject<VirtualElement>;
  arrowRef?: Ref<HTMLElement>;
  arrowStyle?: CSSProperties;
  onPointerLeave?: PointerEventHandler<HTMLElement>;
  onPointerEnter?: PointerEventHandler<HTMLElement>;
  placement?: Placement;
}