@helpwave/hightide
Version:
helpwave's component and theming library
11 lines (8 loc) • 359 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { SolidButtonProps } from '../user-action/Button.js';
import 'react';
type LoadingButtonProps = {
isLoading?: boolean;
} & SolidButtonProps;
declare const LoadingButton: ({ isLoading, size, onClick, ...rest }: LoadingButtonProps) => react_jsx_runtime.JSX.Element;
export { LoadingButton };