treeDiagram property
tree-diagram 树状图
category: Connect 链接 author: 张蔓 tag: 整理, 树状图, 散发, 分支, 结构 rtl: true
Implementation
static IconParkData treeDiagram = IconParkData("treeDiagram", true, (props) => '<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="24" r="4" fill="${props.c2}" stroke="${props.c1}" stroke-width="${props.strokeWidth ?? "4"}"/><circle cx="38" cy="10" r="4" fill="${props.c2}" stroke="${props.c1}" stroke-width="${props.strokeWidth ?? "4"}"/><circle cx="38" cy="24" r="4" fill="${props.c2}" stroke="${props.c1}" stroke-width="${props.strokeWidth ?? "4"}"/><circle cx="38" cy="38" r="4" fill="${props.c2}" stroke="${props.c1}" stroke-width="${props.strokeWidth ?? "4"}"/><path d="M34 38L22 38V10H34" stroke="${props.c1}" stroke-width="${props.strokeWidth ?? "4"}" stroke-linecap="${props.strokeLineCap?.name ?? "round"}" stroke-linejoin="${props.strokeLineJoin?.name ?? "round"}"/><path d="M14 24L34 24" stroke="${props.c1}" stroke-width="${props.strokeWidth ?? "4"}" stroke-linecap="${props.strokeLineCap?.name ?? "round"}" stroke-linejoin="${props.strokeLineJoin?.name ?? "round"}"/></svg>');