File size: 587 Bytes
1ac12bc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import modelscope_studio.components.antd as antd
import modelscope_studio.components.base as ms
def Logo():
with antd.Typography.Title(level=1,
elem_style=dict(fontSize=24,
padding=8,
margin=0)):
with antd.Flex(align="center", gap="small", justify="center"):
antd.Image('./assets/DownArrow.jpg',
preview=False,
alt="logo",
width=96,
height=96)
|