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.

8 lines (7 loc) 232 B
import { ItemSize } from '../../shared/types/item-size'; import { ListItem } from '../../shared/types/list-item'; export type MenuItemProps = ListItem & { destructive?: boolean; onClick?: () => void; size?: ItemSize; };