mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 14:59:16 +01:00
10 lines
379 B
TypeScript
10 lines
379 B
TypeScript
import React from 'react';
|
|
import { BsPrefixPropsWithChildren } from './helpers';
|
|
export interface ModalDialogProps extends BsPrefixPropsWithChildren {
|
|
size?: 'sm' | 'lg' | 'xl';
|
|
centered?: boolean;
|
|
scrollable?: boolean;
|
|
}
|
|
declare const ModalDialog: React.ForwardRefExoticComponent<ModalDialogProps & React.RefAttributes<HTMLDivElement>>;
|
|
export default ModalDialog;
|