@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
9 lines (8 loc) • 307 B
TypeScript
import { ButtonProps } from '@mui/material';
import { LoadingButtonProps } from '@mui/lab';
interface ActionButtonProps extends ButtonProps, Omit<LoadingButtonProps, 'classes'> {
labelId: string;
to?: string;
}
export default function ActionButton(props: ActionButtonProps): JSX.Element;
export {};