@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.
5 lines (4 loc) • 334 B
TypeScript
import { Size } from '../../shared/types/size';
export declare const EDGE_LABEL_SIZES: ("small" | "medium" | "large" | "xx-small" | "xxx-small" | "extra-small" | "extra-large")[];
export type EdgeLabelSize = Extract<Size, 'extra-small' | 'small' | 'medium'>;
export type EdgeState = 'default' | 'selected' | 'disabled' | 'temporary';