Disable the download button displayed on tables in Streamlit

 Hello,

Did you try :

  st.markdown(
                """
                <style>
                [data-testid="stElementToolbar"] {
                    display: none;
                }
                </style>
                """,
                unsafe_allow_html=True
            )