File size: 319 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
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;