UNPKG

@selfcommunity/react-ui

Version:

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

9 lines (8 loc) 307 B
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 {};