@teamsparta/stack-custom-modal
Version:
stack custom modal
9 lines (6 loc) • 327 B
TypeScript
import * as react from 'react';
import { HTMLAttributes } from 'react';
interface CustomModalBodyProps extends HTMLAttributes<HTMLDivElement> {
}
declare const CustomModalBody: react.ForwardRefExoticComponent<CustomModalBodyProps & react.RefAttributes<HTMLDivElement>>;
export { CustomModalBody, type CustomModalBodyProps };