@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) • 409 B
TypeScript
import { IconNode } from '../../types';
import { BaseRegularButtonProps } from '../types';
export type IconLabelButtonProps = {
children: [IconNode, string] | [string, IconNode] | [IconNode, string, IconNode];
} & BaseRegularButtonProps;
export declare const IconLabelButton: import('react').ForwardRefExoticComponent<Omit<IconLabelButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>>;