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) 212 B
import { ReactNode } from 'react'; type Props = { icon: ReactNode; className?: string; }; export declare function NodeIcon({ icon, className }: Props): import("react/jsx-runtime").JSX.Element; export {};