@ebay/ui-core-react
Version:
Skin components build off React
13 lines • 472 B
TypeScript
import { FC } from "react";
import { DialogBaseProps } from "../ebay-dialog-base";
import { DialogCloseEventHandler } from "../ebay-dialog-base/types";
type Position = "start" | "end";
export interface Props<T = any> extends DialogBaseProps<T> {
open?: boolean;
animated?: boolean;
position?: Position;
onClose?: DialogCloseEventHandler;
}
declare const EbayPanelDialog: FC<Props>;
export default EbayPanelDialog;
//# sourceMappingURL=panel-dialog.d.ts.map