UNPKG

@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) 386 B
import { IconNode, Shape } from '../../types'; import { NavBaseButtonProps } from '../types'; export type NavIconButtonProps = { shape?: Shape; transparent?: boolean; children: IconNode; } & NavBaseButtonProps; export declare const NavIconButton: import('react').ForwardRefExoticComponent<Omit<NavIconButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>>;