Coloring's picture
feat: update
1969c22
raw
history blame contribute delete
274 Bytes
import gradio as gr
import modelscope_studio.components.base as ms
with gr.Blocks() as demo:
with ms.Application():
with ms.Span(elem_style=dict(color="red", fontSize=22)):
ms.Text("Hello Span")
if __name__ == "__main__":
demo.queue().launch()