UNPKG

@selfcommunity/react-ui

Version:

React UI Components to integrate a Community created with SelfCommunity Platform.

10 lines (9 loc) 303 B
import { BaseDialogProps } from '../../../shared/BaseDialog'; export interface CPDialogProps extends BaseDialogProps { /** * On change function. * @default null */ onChange?: (avatar: any) => void; } export default function ChangePictureDialog(props: CPDialogProps): JSX.Element;