Spaces:
Running
Running
| import gradio as gr | |
| import modelscope_studio.components.antd as antd | |
| import modelscope_studio.components.antdx as antdx | |
| import modelscope_studio.components.base as ms | |
| with gr.Blocks() as demo: | |
| with ms.Application(): | |
| with antdx.XProvider(): | |
| antdx.Welcome( | |
| icon= | |
| "https://mdn.alipayobjects.com/huamei_iwk9zp/afts/img/A*s5sNRo5LjfQAAAAAAAAAAAAADgCCAQ/fmt.webp", | |
| title="Hello, I'm Ant Design X", | |
| description= | |
| "Base on Ant Design, AGI product interface solution, create a better intelligent vision~" | |
| ) | |
| antd.Divider("Borderless") | |
| with antdx.Welcome( | |
| icon= | |
| "https://mdn.alipayobjects.com/huamei_iwk9zp/afts/img/A*s5sNRo5LjfQAAAAAAAAAAAAADgCCAQ/fmt.webp", | |
| title="Hello, I'm Ant Design X", | |
| description= | |
| "Base on Ant Design, AGI product interface solution, create a better intelligent vision~", | |
| variant="borderless"): | |
| with ms.Slot("extra"): | |
| with antd.Space(): | |
| with antd.Button(None): | |
| with ms.Slot("icon"): | |
| antd.Icon("ShareAltOutlined") | |
| with antd.Button(None): | |
| with ms.Slot("icon"): | |
| antd.Icon("EllipsisOutlined") | |
| if __name__ == "__main__": | |
| demo.queue().launch() | |