Hello
And for lazy people like me, I've create a plugin that will convert a Linux tree output to what Trees is expecting.
More info: https://github.com/cavo789/blog/tree/main/plugins/remark-tree-to-component
You'll write
```tree
.
├── src
│ ├── index.js
│ └── App.js
├── package.json
└── README.md
```
and the plugin will generate
```html
<Trees>
<Folder label="src" icon="flat-color-icons:folder">
<File label="index.js" icon="logos:javascript" />
<File label="App.js" icon="logos:javascript" />
</Folder>
<File label="package.json" icon="ix:json-document" />
<File label="README.md" icon="ph:markdown-logo" />
</Trees>
```