import * as Ariakit from '@ariakit/react'; import { getClassNames } from '@websolutespa/bom-core'; import { forwardRef } from 'react'; import { Button, ButtonProps } from '../button/button'; import { Role } from '../role/role'; export type ModalDismissProps = Ariakit.DialogDismissProps & Omit & { asChild?: boolean; }; export const ModalDismiss = forwardRef( function ModalDismiss({ children, asChild, store, className, ...props }, ref) { const classNames = getClassNames('modal__dismiss', className); return ( ) : ( )} /> ); } );