Spaces:
Running
Running
File size: 1,523 Bytes
f18a2c3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
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()
|