@teamsparta/stack-custom-modal
Version:
stack custom modal
9 lines (6 loc) • 345 B
TypeScript
import * as react from 'react';
import { FlexProps } from '@teamsparta/stack-flex';
interface CustomModalFooterProps extends FlexProps<"div"> {
}
declare const CustomModalFooter: react.ForwardRefExoticComponent<Omit<CustomModalFooterProps, "ref"> & react.RefAttributes<HTMLElement>>;
export { CustomModalFooter, type CustomModalFooterProps };