Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
319 Bytes
import React from 'react';
import { Flex, Progress } from 'antd';
const Demo = () => (
<Flex vertical gap="middle">
<Progress type="line" percent={50} showInfo={false} style={{ width: 320 }} />
<Progress percent={50} showInfo={false} size="small" style={{ width: 100 }} />
</Flex>
);
export default Demo;