UNPKG

@selfcommunity/react-ui

Version:

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

14 lines (13 loc) 360 B
export interface AppearanceProps { /** * 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 Appearance(inProps: AppearanceProps): JSX.Element;