Module: Progress

进度条组件
Properties:
Name Type Description
props object 组件属性,内容如下
Properties
Name Type Description
value string | number 进度条值

Examples

组件引入

// 全局模块引入
import { Progress } from '@ccreator/smart-ui';
// 最小化模块引入
import Progress from '@ccreator/smart-ui/dist/Progress';

使用示例

<Progress value={50} />
<Progress value="50%" />