UNPKG

@brizy/ui

Version:
6 lines (5 loc) 227 B
import AntProgress from "antd/lib/progress"; import React from "react"; export const Progress = ({ type, percent, format }) => { return React.createElement(AntProgress, { type: type, percent: percent, format: format }); };