import React from 'react' import { OverlayArrow as RACOverlayArrow, type OverlayArrowProps } from 'react-aria-components' import { useReversedColors } from '~components/utils' import { mergeClassNames } from '~components/utils/mergeClassNames' import styles from './OverlayArrow.module.css' export { type OverlayArrowProps } /** * An OverlayArrow renders a custom arrow element relative to an overlay element * such as a popover or tooltip such that it aligns with a trigger element. */ export const OverlayArrow = (props: OverlayArrowProps): JSX.Element => { const reverseColors = useReversedColors() return ( ) }