nicecode-v2/packages/meta/src/progress/demo/line-mini.tsx

14 lines
363 B
TypeScript

import React from 'react';
import { Progress } from 'antd';
const App: React.FC = () => (
<div style={{ width: 170 }}>
<Progress percent={30} size="small" />
<Progress percent={50} size="small" status="active" />
<Progress percent={70} size="small" status="exception" />
<Progress percent={100} size="small" />
</div>
);
export default App;