import {useTheme} from '@emotion/react'; import styled from '@emotion/styled'; import {FocusScope} from '@react-aria/focus'; import {AnimatePresence} from 'framer-motion'; import DropdownButton from 'sentry/components/dropdownButton'; import {Overlay, PositionWrapper} from 'sentry/components/overlay'; import space from 'sentry/styles/space'; import useOverlay from 'sentry/utils/useOverlay'; export default { title: 'Components/Buttons/Dropdowns/Overlay', args: { offset: 8, position: 'bottom', animated: true, }, argTypes: { position: { options: [ 'top', 'bottom', 'left', 'right', 'top-start', 'top-end', 'bottom-start', 'bottom-end', 'left-start', 'left-end', 'right-start', 'right-end', ], control: {type: 'radio'}, }, }, }; export const _Overlay = ({animated, ...args}) => { const {isOpen, triggerProps, overlayProps, arrowProps} = useOverlay(args); const theme = useTheme(); return (