@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
19 lines (18 loc) • 450 B
TypeScript
export interface CreateIncubatorDialogProps {
/**
* Overrides or extends the styles applied to the component.
* @default null
*/
className?: string;
/**
* Opens dialog
* @default false
*/
open: boolean;
/**
* On dialog close callback function
* @default null
*/
onClose?: () => void;
}
export default function CreateIncubatorDialog(props: CreateIncubatorDialogProps): JSX.Element;