import React, { forwardRef, ForwardedRef } from 'react'; import { Button as RACButton, ButtonProps } from 'react-aria-components'; export const Button = forwardRef(function _Button( props: ButtonProps, ref: ForwardedRef, ) { return ; });