CoolFace
Apppublic

orikeshet/nix-tts

sourceHugging Facemitupdated 2y agoView on Hugging Face
0likes
component.py11 linesDownload Raw Back to elements
1# Streamlit2import streamlit as st3 4def centered_text(5    input_text,6    mode = "h1",7):8    st.markdown(9        f"<{mode} style='text-align: center;'>{input_text}</{mode}>",10        unsafe_allow_html = True11    )