hrnet-modal-p14
Version:
A package for the project 14 of OpenClassrooms called HrNet
9 lines • 341 B
TypeScript
import React from 'react';
import type { HTMLAttributes, ReactNode } from 'react';
export interface DialogProps extends HTMLAttributes<HTMLDivElement> {
children?: ReactNode;
variant?: 'primary' | 'secondary';
buttonFunction?: () => void;
}
export declare const Dialog: React.FC<DialogProps>;
//# sourceMappingURL=Dialog.d.ts.map