.
This commit is contained in:
Generated
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
import * as React from 'react';
|
||||
type DialogBodyProps = {
|
||||
children?: React.ReactNode;
|
||||
className?: string;
|
||||
} & React.HTMLAttributes<HTMLDivElement>;
|
||||
declare const DialogBody: React.FC<DialogBodyProps>;
|
||||
export { DialogBody };
|
||||
Generated
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
import * as React from 'react';
|
||||
type DialogContentProps = {
|
||||
children?: React.ReactNode;
|
||||
className?: string;
|
||||
} & React.HTMLAttributes<HTMLDivElement>;
|
||||
declare const DialogContent: React.FC<DialogContentProps>;
|
||||
export { DialogContent };
|
||||
Generated
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
type DialogHeaderProps = React.HTMLAttributes<HTMLDivElement>;
|
||||
export declare function DialogHeader(props: DialogHeaderProps): import("react/jsx-runtime").JSX.Element;
|
||||
export {};
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
import * as React from 'react';
|
||||
type DialogProps = {
|
||||
children?: React.ReactNode;
|
||||
'aria-labelledby': string;
|
||||
'aria-describedby': string;
|
||||
className?: string;
|
||||
onClose?: () => void;
|
||||
} & React.HTMLAttributes<HTMLDivElement>;
|
||||
declare const Dialog: React.FC<DialogProps>;
|
||||
export { Dialog };
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
export { DialogBody } from './dialog-body';
|
||||
export { DialogContent } from './dialog-content';
|
||||
export { styles } from './styles';
|
||||
+1
@@ -0,0 +1 @@
|
||||
export declare const styles: string;
|
||||
Reference in New Issue
Block a user