@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
8 lines (7 loc) • 315 B
TypeScript
import { IconButtonProps } from '@mui/material';
export interface OnBoardingActionsButtonProps extends IconButtonProps {
isExpanded: boolean;
onExpandChange: () => void;
onHideOnBoarding: () => void;
}
export default function OnBoardingActionsButton(inProps: OnBoardingActionsButtonProps): JSX.Element;