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