@teamsparta/stack-custom-modal
Version:
stack custom modal
9 lines (6 loc) • 350 B
text/typescript
import * as react from 'react';
import * as Dialog from '@radix-ui/react-dialog';
interface CustomModalTriggerProps extends Dialog.DialogTriggerProps {
}
declare const CustomModalTrigger: react.ForwardRefExoticComponent<CustomModalTriggerProps & react.RefAttributes<HTMLButtonElement>>;
export { CustomModalTrigger, type CustomModalTriggerProps };