Spaces:
Runtime error
Runtime error
File size: 320 Bytes
99bebe0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import streamlit as st
@st.cache_data
def show_icon(emoji: str):
"""Shows an emoji as a Notion-style page icon.
Args:
emoji (str): name of the emoji, i.e. ":balloon:"
"""
st.write(
f'<span style="font-size: 78px; line-height: 1">{emoji}</span>',
unsafe_allow_html=True,
)
|