react-d3-tree
Version:
React component to create interactive D3 tree hierarchies
3 lines (2 loc) • 851 B
TypeScript
declare const _default: "\n/* Tree */\n.rd3t-tree-container {\n width: 100%;\n height: 100%;\n}\n\n.rd3t-grabbable {\n cursor: move; /* fallback if grab cursor is unsupported */\n cursor: grab;\n cursor: -moz-grab;\n cursor: -webkit-grab;\n}\n.rd3t-grabbable:active {\n cursor: grabbing;\n cursor: -moz-grabbing;\n cursor: -webkit-grabbing;\n}\n\n/* Node */\n.rd3t-node {\n cursor: pointer;\n fill: #777;\n stroke: #000;\n stroke-width: 2;\n}\n\n.rd3t-leaf-node {\n cursor: pointer;\n fill: transparent;\n stroke: #000;\n stroke-width: 1;\n}\n\n.rd3t-label__title {\n fill: #000;\n stroke: none;\n font-weight: bolder;\n}\n\n.rd3t-label__attributes {\n fill: #777;\n stroke: none;\n font-weight: bolder;\n font-size: smaller;\n}\n\n/* Link */\n.rd3t-link {\n fill: none;\n stroke: #000;\n}\n";
export default _default;