@synergycodes/axiom
Version:
A React library for creating node-based UIs and diagram-driven applications. Perfect for React Flow users, providing ready-to-use node templates and components that work seamlessly with React Flow's ecosystem.
7 lines (6 loc) • 318 B
TypeScript
import { BaseRegularButtonProps } from '../types';
export type LabelButtonProps = {
isLoading?: boolean;
children: string;
} & BaseRegularButtonProps;
export declare const LabelButton: import('react').ForwardRefExoticComponent<Omit<LabelButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>>;