import { Box } from '@rocket.chat/fuselage'; import type { ComponentProps } from 'react'; import { useRef } from 'react'; import type { AriaDialogProps } from 'react-aria'; import { useDialog } from 'react-aria'; type UserCardDialogProps = AriaDialogProps & ComponentProps; const UserCardDialog = (props: UserCardDialogProps) => { const ref = useRef(null); const { dialogProps } = useDialog(props, ref); return ( ); }; export default UserCardDialog;