Schluca / streamlit_tree_select

A simple and elegant checkbox tree for Streamlit.
MIT License
80 stars 9 forks source link

html in label support #10

Open BlueGob opened 8 months ago

BlueGob commented 8 months ago

Now you can pass html as string in the label field for more customization For example

nodes = [
    {"label": "<i>Folder A</i>", "value": "folder_a"}
]

image