@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.
8 lines (7 loc) • 358 B
TypeScript
import { IconNode, Shape } from '../../types';
import { BaseRegularButtonProps } from '../types';
export type IconButtonProps = {
shape?: Shape;
children: IconNode;
} & BaseRegularButtonProps;
export declare const IconButton: import('react').ForwardRefExoticComponent<Omit<IconButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>>;