Progress
Progress component: Component giúp hiển thị giao diện cho biết một tiến trình đang thực hiện
Properties
Progress
Example
import React from "react";
import { Page, Progress, Box, Text } from "zmp-ui";
export default function HomePage() {
return (
<Text.Title size="small">Progress</Text.Title>
<Box mt={6}>
<Box mt={2}>
<Box>
<Text>Default</Text>
</Box>
</Box>
<Box mt={6}>
<Box>
<Text>Show Label</Text>
</Box>
</Box>
</Box>
);
}