12 lines
269 B
Text
12 lines
269 B
Text
digraph G {
|
|
fontname = "Roboto";
|
|
newrank=true;
|
|
node[fontname = "Roboto", style="filled", fontcolor="#333333", fillcolor=white, color="#333333"];
|
|
edge[color="#333333"];
|
|
|
|
iced_core -> iced_web [style=dashed];
|
|
|
|
iced_web -> iced;
|
|
|
|
iced_core [style=dashed];
|
|
}
|