@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
14 lines (13 loc) • 348 B
TypeScript
export interface InviteProps {
/**
* Overrides or extends the styles applied to the component.
* @default null
*/
className?: string;
/**
* Callback triggered on complete action click
* @default null
*/
onCompleteAction: () => void;
}
export default function Invite(inProps: InviteProps): JSX.Element;