@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.
9 lines (8 loc) • 437 B
TypeScript
import { BaseButtonProps } from '../types';
type Props = {
/** Class name meant to be used by parent components using <BaseButton /> directly */
styles: string;
children: React.ReactNode;
} & BaseButtonProps;
export declare const BaseButton: import('react').ForwardRefExoticComponent<Omit<Omit<Props, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "ref"> & import('react').RefAttributes<HTMLElement>>;
export {};